-
-
Notifications
You must be signed in to change notification settings - Fork 939
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dark mode fixes #4860
Dark mode fixes #4860
Conversation
The last lines of the failed workflow action look like a successful build to me:
I don't see a way to re-run it myself. |
Finally!Thank you so much! 🤝 😃👍 🎉 |
@@ -2754,7 +2754,7 @@ void GUI_App::init_label_colours() | |||
m_color_label_modified = is_dark_mode ? wxColour("#F1754E") : wxColour("#F1754E"); | |||
m_color_label_sys = is_dark_mode ? wxColour("#B2B3B5") : wxColour("#363636"); | |||
|
|||
#ifdef _WIN32 | |||
#if defined(_WIN32) || defined(__linux__) || defined(__APPLE__) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm just wondering if we even need this #if
here, since every operating system is affected.
Or are there more OS'es than Linux, Windows & Mac? 😊 🤷♂️
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree that it probably isn't needed. And I'm happy to remove it if desired.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest to let @SoftFever have a look. 😊
Unfortunately there is more: |
I'm aware there are more, that is why this commit message specifically only mentions the tabs. I'm still tracking down the other areas. |
These are the areas I've identified as needing to be fixed:
I'll add to the list as I find them and fix them. |
Oh, sorry, was not aware of that. 🤦🏻
Great views! 👍 |
Maybe you could put these into the initial post, so the progress can be monitored easier. 😊 |
I'd rather get the fixes committed and merged as completed than wait for all to be found. I don't mind having a main tracking ticket, but it may take me some time to get to all of them. |
Signed-off-by: Jamin W. Collins <[email protected]>
Signed-off-by: Jamin W. Collins <[email protected]>
Signed-off-by: Jamin W. Collins <[email protected]>
Signed-off-by: Jamin W. Collins <[email protected]>
Signed-off-by: Jamin W. Collins <[email protected]>
Signed-off-by: Jamin W. Collins <[email protected]>
Signed-off-by: Jamin W. Collins <[email protected]>
Signed-off-by: Jamin W. Collins <[email protected]>
Signed-off-by: Jamin W. Collins <[email protected]>
Signed-off-by: Jamin W. Collins <[email protected]>
Signed-off-by: Jamin W. Collins <[email protected]>
Signed-off-by: Jamin W. Collins <[email protected]>
Signed-off-by: Jamin W. Collins <[email protected]>
Signed-off-by: Jamin W. Collins <[email protected]>
ab91225
to
d462e49
Compare
@jamincollins |
Yes, trying to track it down. But it is better than before. And additions to it are white. |
Definitely! |
Closing this PR in favor of a slightly different (and IMO better) approach. |
Description
This fixes issues with the print settings tabs on both Linux and Mac.
Screenshots/Recordings/Graphs
Before:
After:
Tests
Built and tested on both (Arch) Linux and Mac.