[ekiga/ds-gtk-application] Call Window: Use our own icons for Reject/Answer actions.



commit f760ba608ff3371f95980a94e574e0028a5a8d57
Author: Damien Sandras <dsandras seconix com>
Date:   Sun Dec 7 16:20:10 2014 +0100

    Call Window: Use our own icons for Reject/Answer actions.
    
    1) They look better.
    2) Users know them since 14 years.

 lib/engine/gui/gtk-frontend/call-window.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/lib/engine/gui/gtk-frontend/call-window.cpp b/lib/engine/gui/gtk-frontend/call-window.cpp
index 3e593ed..0d70a3d 100644
--- a/lib/engine/gui/gtk-frontend/call-window.cpp
+++ b/lib/engine/gui/gtk-frontend/call-window.cpp
@@ -1533,7 +1533,7 @@ ekiga_call_window_init_gui (EkigaCallWindow *self)
 
   /* Reject */
   button = gtk_button_new_with_mnemonic (_("_Reject"));
-  icon = g_themed_icon_new ("call-stop");
+  icon = g_themed_icon_new ("phone-hang-up");
   image = gtk_image_new_from_gicon (icon, GTK_ICON_SIZE_BUTTON);
   g_object_unref (icon);
   gtk_button_set_image (GTK_BUTTON (button), image);
@@ -1596,7 +1596,7 @@ ekiga_call_window_init_gui (EkigaCallWindow *self)
 
   /* Call Accept */
   button = gtk_button_new_with_mnemonic (_("_Answer"));
-  icon = g_themed_icon_new ("call-start");
+  icon = g_themed_icon_new ("phone-pick-up");
   image = gtk_image_new_from_gicon (icon, GTK_ICON_SIZE_BUTTON);
   g_object_unref (icon);
   gtk_button_set_image (GTK_BUTTON (button), image);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]