[totem] main: Fix some icons not being symbolic anymore
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [totem] main: Fix some icons not being symbolic anymore
- Date: Fri, 4 Jul 2014 09:54:50 +0000 (UTC)
commit e4357effeaa2b6b7c8d8507bff2ea75a7bd04754
Author: Bastien Nocera <hadess hadess net>
Date: Fri Jun 6 18:29:43 2014 +0200
main: Fix some icons not being symbolic anymore
Hatchet job when we started using GTK+'s automatic RTL icon support.
Spotted by jimmac and Lapo.
src/totem-object.c | 10 +++++-----
src/totem-playlist.c | 2 +-
2 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/src/totem-object.c b/src/totem-object.c
index 9593be8..63f78f7 100644
--- a/src/totem-object.c
+++ b/src/totem-object.c
@@ -1311,7 +1311,7 @@ play_pause_set_label (TotemObject *totem, TotemStates state)
totem_playlist_set_playing (totem->playlist, TOTEM_PLAYLIST_STATUS_PLAYING);
break;
case STATE_PAUSED:
- id = "media-playback-start";
+ id = "media-playback-start-symbolic";
tip = N_("Play");
totem_playlist_set_playing (totem->playlist, TOTEM_PLAYLIST_STATUS_PAUSED);
break;
@@ -1320,7 +1320,7 @@ play_pause_set_label (TotemObject *totem, TotemStates state)
0, 0);
bacon_time_label_set_time (totem->time_rem_label,
0, 0);
- id = "media-playback-start";
+ id = "media-playback-start-symbolic";
totem_playlist_set_playing (totem->playlist, TOTEM_PLAYLIST_STATUS_NONE);
tip = N_("Play");
break;
@@ -3613,19 +3613,19 @@ totem_callback_connect (TotemObject *totem)
/* Previous */
item = create_control_button (totem, "app.previous-chapter",
- "media-skip-backward",
+ "media-skip-backward-symbolic",
_("Previous Chapter/Movie"));
gtk_box_pack_start (box, item, FALSE, FALSE, 0);
/* Play/Pause */
item = create_control_button (totem, "app.play",
- "media-playback-start",
+ "media-playback-start-symbolic",
_("Play / Pause"));
gtk_box_pack_start (box, item, FALSE, FALSE, 0);
/* Next */
item = create_control_button (totem, "app.next-chapter",
- "media-skip-forward",
+ "media-skip-forward-symbolic",
_("Next Chapter/Movie"));
gtk_box_pack_start (box, item, FALSE, FALSE, 0);
diff --git a/src/totem-playlist.c b/src/totem-playlist.c
index 10af54b..b56c8e7 100644
--- a/src/totem-playlist.c
+++ b/src/totem-playlist.c
@@ -560,7 +560,7 @@ set_playing_icon (GtkTreeViewColumn *column, GtkCellRenderer *renderer,
switch (playing) {
case TOTEM_PLAYLIST_STATUS_PLAYING:
- icon_name = "media-playback-start";
+ icon_name = "media-playback-start-symbolic";
break;
case TOTEM_PLAYLIST_STATUS_PAUSED:
icon_name = "media-playback-pause-symbolic";
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]