Fixed #535 (audio stop button icon)

Originally committed to SVN as r1683.
This commit is contained in:
Rodrigo Braz Monteiro 2008-01-11 03:49:25 +00:00
parent df515c6f3b
commit 337d451e94
4 changed files with 2 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 238 B

After

Width:  |  Height:  |  Size: 238 B

View File

@ -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"

View File

@ -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"));