fix for white text on bright yellow edit box in dark theme

This commit is contained in:
Barry-Thomas-Paul: Moss 2023-10-31 19:39:45 -04:00
parent 7b9ac8eee0
commit 0453092831
2 changed files with 2 additions and 0 deletions

Binary file not shown.

View File

@ -4167,6 +4167,7 @@ class EventsFocus(EventsListenerBase, XFocusListener):
if service in self.CONTROLS:
obj = event.Source.Model
obj.BackgroundColor = COLOR_ON_FOCUS
obj.TextColor = TEXT_COLOR_ON_FOCUS
return
def focusLost(self, event):
@ -6864,6 +6865,7 @@ def get_color(value):
COLOR_ON_FOCUS = get_color('LightYellow')
TEXT_COLOR_ON_FOCUS = get_color('black')
class LOServer(object):