summaryrefslogtreecommitdiff
path: root/src/totem-playlist.c
diff options
context:
space:
mode:
authorYosef Or Boczko <yoseforb@gmail.com>2013-07-31 16:45:12 +0300
committerYosef Or Boczko <yoseforb@gmail.com>2013-07-31 16:45:12 +0300
commit804d8f77d54e5cfe171dd42486e143060bd8df3f (patch)
treee7f80a2dc1651a91a221dbd6e0fb1b85dfa910f1 /src/totem-playlist.c
parent55dc2b73e9de4c2debdd6e19c055505ce5b5e6aa (diff)
downloadtotem-804d8f77d54e5cfe171dd42486e143060bd8df3f.tar.gz
main: Set button arrow icons according to locale's text direction
go-previous-symbolic in LTR, go-previous-rtl-symbolic in RTL. media-playback-start-symbolic in LTR, media-playback-start-rtl-symbolic in RTL. media-seek-forward-symbolic in LTR, media-seek-forward-rtl-symbolic in RTL. media-seek-backward-symbolic in LTR, media-seek-backward-rtl-symbolic in RTL. media-skip-forward-symbolic in LTR, media-skip-forward-rtl-symbolic in RTL. media-skip-backward-symbolic in LTR, media-skip-backward-rtl-symbolic in RTL. https://bugzilla.gnome.org/show_bug.cgi?id=702631
Diffstat (limited to 'src/totem-playlist.c')
-rw-r--r--src/totem-playlist.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/totem-playlist.c b/src/totem-playlist.c
index 0d843e3e0..6d655371d 100644
--- a/src/totem-playlist.c
+++ b/src/totem-playlist.c
@@ -36,6 +36,7 @@
#include "totem-uri.h"
#include "totem-interface.h"
#include "video-utils.h"
+#include "totem-rtl-helpers.h"
#define PL_LEN (gtk_tree_model_iter_n_children (playlist->priv->model, NULL))
@@ -1274,7 +1275,7 @@ set_playing_icon (GtkTreeViewColumn *column, GtkCellRenderer *renderer,
switch (playing) {
case TOTEM_PLAYLIST_STATUS_PLAYING:
- icon_name = "media-playback-start-symbolic";
+ icon_name = totem_get_rtl_icon_name ("media-playback-start");
break;
case TOTEM_PLAYLIST_STATUS_PAUSED:
icon_name = "media-playback-pause-symbolic";