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/config_dialog.h | |
| parent | 84f0cae91025bc9349beb979bb664a4d63e6499c (diff) | |
Change bitmap_path to take a full name with extension.
Diffstat (limited to 'src/wx/config_dialog.h')
| -rw-r--r-- | src/wx/config_dialog.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/config_dialog.h b/src/wx/config_dialog.h index 3e71cb11a..c767929f7 100644 --- a/src/wx/config_dialog.h +++ b/src/wx/config_dialog.h @@ -88,7 +88,7 @@ public: #ifdef DCPOMATIC_OSX wxBitmap GetLargeIcon () const override { - return wxBitmap(bitmap_path("general"), wxBITMAP_TYPE_PNG); + return wxBitmap(bitmap_path("general.png"), wxBITMAP_TYPE_PNG); } #endif @@ -166,7 +166,7 @@ public: #ifdef DCPOMATIC_OSX wxBitmap GetLargeIcon () const override { - return wxBitmap(bitmap_path("keys"), wxBITMAP_TYPE_PNG); + return wxBitmap(bitmap_path("keys.png"), wxBITMAP_TYPE_PNG); } #endif @@ -197,7 +197,7 @@ public: #ifdef DCPOMATIC_OSX wxBitmap GetLargeIcon () const override { - return wxBitmap(bitmap_path("sound"), wxBITMAP_TYPE_PNG); + return wxBitmap(bitmap_path("sound.png"), wxBITMAP_TYPE_PNG); } #endif |
