Skip to content
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

Fix the white on white on windows. Dark mode doesn't work with wxpython. #14

Merged
merged 1 commit into from
Apr 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/objdictgen/ui/subindextable.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
# USA

import codecs
import os

import wx
import wx.grid
Expand Down Expand Up @@ -160,7 +161,8 @@ def SetValue(self, row, col, value):
def setCellTheme(self, row, col, grid):
system_appearance = wx.SystemSettings.GetAppearance()
background_colour = wx.SystemSettings.GetColour(wx.SYS_COLOUR_WINDOW)
text_colour = wx.WHITE if system_appearance.IsDark() else wx.BLACK
# Windows widgets are white on dark mode, so we need to exclude win
text_colour = wx.WHITE if system_appearance.IsDark() and os.name != "nt" else wx.BLACK
grid.SetCellBackgroundColour(row, col, background_colour)
grid.SetCellTextColour(row, col, text_colour)

Expand Down