diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-07-07 15:20:03 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-07-20 10:25:54 +0200 |
| commit | 439b5d7a315daf2422cb6c995110d628a91d9389 (patch) | |
| tree | 994ce6e717758f355750e5540ad4965f66989a2b /src/wx/video_panel.cc | |
| parent | 84f0cae91025bc9349beb979bb664a4d63e6499c (diff) | |
Change bitmap_path to take a full name with extension.
Diffstat (limited to 'src/wx/video_panel.cc')
| -rw-r--r-- | src/wx/video_panel.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/video_panel.cc b/src/wx/video_panel.cc index 83c29611d..e866c59a7 100644 --- a/src/wx/video_panel.cc +++ b/src/wx/video_panel.cc @@ -127,7 +127,7 @@ VideoPanel::create () ); _left_right_link = new wxToggleButton (this, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(link_width, link_height)); - _left_right_link->SetBitmap (wxBitmap(bitmap_path("link"), wxBITMAP_TYPE_PNG)); + _left_right_link->SetBitmap (wxBitmap(bitmap_path("link.png"), wxBITMAP_TYPE_PNG)); _right_crop_label = create_label (this, _("Right"), true); _right_crop = new ContentSpinCtrl<VideoContent> ( @@ -152,7 +152,7 @@ VideoPanel::create () ); _top_bottom_link = new wxToggleButton (this, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(link_width, link_height)); - _top_bottom_link->SetBitmap (wxBitmap(bitmap_path("link"), wxBITMAP_TYPE_PNG)); + _top_bottom_link->SetBitmap (wxBitmap(bitmap_path("link.png"), wxBITMAP_TYPE_PNG)); _bottom_crop_label = create_label (this, _("Bottom"), true); _bottom_crop = new ContentSpinCtrl<VideoContent> ( |
