Skip to content

Commit

Permalink
Unix compilation fix, use light dropdown arrow in dark theme
Browse files Browse the repository at this point in the history
  • Loading branch information
sirjuddington committed Oct 23, 2024
1 parent 6a75401 commit d8b0130
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Graphics/Icons.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ wxBitmap loadPNGIcon(const IconDef& icon, int size, Point2i padding)
bool icons::loadIcons()
{
// Check for dark mode
#if defined(__WXMSW__)
#if defined(__WXMSW__) && !wxCHECK_VERSION(3, 3, 0)
ui_icons_dark = false; // Force light theme icons in windows
#elif wxCHECK_VERSION(3, 1, 0)
ui_icons_dark = wxSystemSettings::GetAppearance().IsDark();
Expand Down
2 changes: 1 addition & 1 deletion src/MainEditor/Mus2Mid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
// consistently return true on success and false if there were a problem.


#include "mus2mid.h"
#include "Mus2Mid.h"

using namespace slade;

Expand Down

0 comments on commit d8b0130

Please sign in to comment.