summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRashi Aswani <aswanirashi19@gmail.com>2013-11-08 04:37:02 +0530
committerDavid King <amigadave@amigadave.com>2013-11-07 23:20:01 +0000
commitb1f41512c777cfc9ed1c3edaebcf6c17f7d06322 (patch)
treecc7ca7c656b8ce4ee63ef072b404557adb2e7bb1 /src
parent47cc140a3fdb13a067a295212a8b9a00ffdea7f4 (diff)
downloadcheese-b1f41512c777cfc9ed1c3edaebcf6c17f7d06322.tar.gz
Use symbolic icons for photo and video button
Using the stock "record" icon for taking photos is misleading, so use a symbolic "webcam" icon for both taking a photo and recording a video. Update the "stop" icon to also be a symbolic icon. https://bugzilla.gnome.org/show_bug.cgi?id=668599
Diffstat (limited to 'src')
-rw-r--r--src/cheese-window.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cheese-window.vala b/src/cheese-window.vala
index 4585a662..43623229 100644
--- a/src/cheese-window.vala
+++ b/src/cheese-window.vala
@@ -775,7 +775,7 @@ public class Cheese.MainWindow : Gtk.ApplicationWindow
Timeout.add_seconds (1, update_timeout_layer);
take_action_button_label.label = "<b>" + _("Stop _Recording") + "</b>";
take_action_button.tooltip_text = _("Stop recording");
- take_action_button_image.set_from_stock (Gtk.Stock.MEDIA_STOP, Gtk.IconSize.BUTTON);
+ take_action_button_image.set_from_icon_name ("media-playback-stop-symbolic", Gtk.IconSize.BUTTON);
this.is_recording = true;
this.disable_mode_change ();
}
@@ -791,7 +791,7 @@ public class Cheese.MainWindow : Gtk.ApplicationWindow
timeout_layer.text = "00:00:00";
take_action_button_label.label = "<b>" + _("_Record a Video") + "</b>";
take_action_button.tooltip_text = _("Record a video");
- take_action_button_image.set_from_stock (Gtk.Stock.MEDIA_RECORD, Gtk.IconSize.BUTTON);
+ take_action_button_image.set_from_icon_name ("camera-web-symbolic", Gtk.IconSize.BUTTON);
this.is_recording = false;
this.enable_mode_change ();
}