replace primary transport buttons
authorMaksym Veremeyenko <verem@m1stereo.tv>
Wed, 15 Jun 2011 05:39:28 +0000 (08:39 +0300)
committerMaksym Veremeyenko <verem@m1stereo.tv>
Wed, 15 Jun 2011 05:39:28 +0000 (08:39 +0300)
pixmaps/player_pause_32x32.png [new file with mode: 0644]
pixmaps/player_play_64x32.png [new file with mode: 0644]
pixmaps/player_stop_32x32.png [new file with mode: 0644]
pixmaps/stock_media-pause-16.png [deleted file]
pixmaps/stock_media-play-16.png [deleted file]
pixmaps/stock_media-stop-16.png [deleted file]
src/interface.c

diff --git a/pixmaps/player_pause_32x32.png b/pixmaps/player_pause_32x32.png
new file mode 100644 (file)
index 0000000..095a157
Binary files /dev/null and b/pixmaps/player_pause_32x32.png differ
diff --git a/pixmaps/player_play_64x32.png b/pixmaps/player_play_64x32.png
new file mode 100644 (file)
index 0000000..b9d8900
Binary files /dev/null and b/pixmaps/player_play_64x32.png differ
diff --git a/pixmaps/player_stop_32x32.png b/pixmaps/player_stop_32x32.png
new file mode 100644 (file)
index 0000000..705169f
Binary files /dev/null and b/pixmaps/player_stop_32x32.png differ
diff --git a/pixmaps/stock_media-pause-16.png b/pixmaps/stock_media-pause-16.png
deleted file mode 100644 (file)
index abda218..0000000
Binary files a/pixmaps/stock_media-pause-16.png and /dev/null differ
diff --git a/pixmaps/stock_media-play-16.png b/pixmaps/stock_media-play-16.png
deleted file mode 100644 (file)
index f23491a..0000000
Binary files a/pixmaps/stock_media-play-16.png and /dev/null differ
diff --git a/pixmaps/stock_media-stop-16.png b/pixmaps/stock_media-stop-16.png
deleted file mode 100644 (file)
index b4f1f30..0000000
Binary files a/pixmaps/stock_media-stop-16.png and /dev/null differ
index 233b178..65b9814 100644 (file)
@@ -63,17 +63,17 @@ create_buttons_transport(GtkWidget *top, int type)
                {
                        1,
                        "Pause",
-                       "stock_media-pause-16.png"
+                       "player_pause_32x32.png"
                },
                {
                        1,
                        "Play",
-                       "stock_media-play-16.png"
+                       "player_play_64x32.png"
                },
                {
                        1,
                        "Stop",
-                       "stock_media-stop-16.png"
+                       "player_stop_32x32.png"
                },
                {
                        2,
@@ -126,7 +126,6 @@ create_buttons_transport(GtkWidget *top, int type)
                transport = gtk_button_new ();
                gtk_widget_show (transport);
                gtk_box_pack_start (GTK_BOX (hbox), transport, TRUE, FALSE, 0);
-               gtk_widget_set_size_request (transport, 34, 25);
                GTK_WIDGET_UNSET_FLAGS (transport, GTK_CAN_FOCUS);
                gtk_button_set_relief (GTK_BUTTON (transport), GTK_RELIEF_NONE);
                gtk_widget_set_tooltip_text (transport, buttons[i].tooltip);