From 337d451e94504187be1a04592255185005a1d9c5 Mon Sep 17 00:00:00 2001 From: Rodrigo Braz Monteiro Date: Fri, 11 Jan 2008 03:49:25 +0000 Subject: [PATCH] Fixed #535 (audio stop button icon) Originally committed to SVN as r1683. --- aegisub/bitmaps/button_pause.bmp | Bin 0 -> 238 bytes aegisub/bitmaps/button_stop.bmp | Bin 238 -> 238 bytes aegisub/res.rc | 1 + aegisub/video_box.cpp | 2 +- 4 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 aegisub/bitmaps/button_pause.bmp diff --git a/aegisub/bitmaps/button_pause.bmp b/aegisub/bitmaps/button_pause.bmp new file mode 100644 index 0000000000000000000000000000000000000000..3b3d75c5f607e40a9065f5f4aff04b470e12f708 GIT binary patch literal 238 zcmZ?rea8R+Wk5;;hy{R{ABY(lSb!u0Lj{<`M(k%`03wF{`ymvN1Tq;895}$x(9i&s g_zy-5|NnznKn#Q+As|ss5EQT%u!9tlO5-;e0Ok-%X#fBK literal 0 HcmV?d00001 diff --git a/aegisub/bitmaps/button_stop.bmp b/aegisub/bitmaps/button_stop.bmp index 3b3d75c5f607e40a9065f5f4aff04b470e12f708..38296bc288e027bf9cc943ec6c7897ae9092c1f6 100644 GIT binary patch delta 64 dcmaFI_>OVHOk)NHhH@Y%Ac3BEQFh`4Rsf2s6Q}?H delta 64 dcmaFI_>OVHOk?%}_HrO7Ac3BEQFh`4Rsi_w7a9Nn diff --git a/aegisub/res.rc b/aegisub/res.rc index f39c60dc8..c9010c76d 100644 --- a/aegisub/res.rc +++ b/aegisub/res.rc @@ -90,6 +90,7 @@ sort_times_button BITMAP "bitmaps/sort_times.bmp" kanji_timer_button BITMAP "bitmaps/kanji_timer.bmp" button_play BITMAP "bitmaps/button_play.bmp" +button_pause BITMAP "bitmaps/button_pause.bmp" button_stop BITMAP "bitmaps/button_stop.bmp" button_track_points BITMAP "bitmaps/button_track_points.bmp" diff --git a/aegisub/video_box.cpp b/aegisub/video_box.cpp index 175e8402f..934dbcfbd 100644 --- a/aegisub/video_box.cpp +++ b/aegisub/video_box.cpp @@ -77,7 +77,7 @@ VideoBox::VideoBox(wxWindow *parent) VideoPlayButton->SetToolTip(_("Play video starting on this position")); wxBitmapButton *VideoPlayLineButton = new wxBitmapButton(videoPage,Video_Play_Line,wxBITMAP(button_playline),wxDefaultPosition,wxSize(25,-1)); VideoPlayLineButton->SetToolTip(_("Play current line")); - wxBitmapButton *VideoStopButton = new wxBitmapButton(videoPage,Video_Stop,wxBITMAP(button_stop),wxDefaultPosition,wxSize(25,-1)); + wxBitmapButton *VideoStopButton = new wxBitmapButton(videoPage,Video_Stop,wxBITMAP(button_pause),wxDefaultPosition,wxSize(25,-1)); VideoStopButton->SetToolTip(_("Stop video playback")); AutoScroll = new ToggleBitmap(videoPage,Video_Auto_Scroll,wxBITMAP(toggle_video_autoscroll),wxSize(30,-1)); AutoScroll->SetToolTip(_("Toggle autoscroll of video"));