1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Fix menu colors on macOS with dark menu bar

Widget colors and all scrollbars look just fine without these lines
despite the comments.
This commit is contained in:
Juhani Numminen 2020-02-09 17:36:26 +02:00
parent 57b9c9d41e
commit 00f6f70e93

View file

@ -25,11 +25,6 @@ from pysollib.macosx.appSupport import hideTkConsole
from pysollib.settings import TOOLKIT, USE_TILE
from pysollib.winsystems.common import BaseTkSettings, base_init_root_window
from six.moves import tkinter
if USE_TILE:
from pysollib.tile import ttk
def init_root_window(root, app):
base_init_root_window(root, app)
@ -38,15 +33,7 @@ def init_root_window(root, app):
if TOOLKIT == 'gtk':
pass
elif USE_TILE:
style = ttk.Style(root)
color = style.lookup('.', 'background')
if color:
root.tk_setPalette(color) # for non-ttk widgets
if app.opt.tile_theme == 'aqua':
# standard Tk scrollbars work on OS X, but ttk ones look weird
ttk.Scrollbar = tkinter.Scrollbar
pass
else: # pure Tk
# root.option_add(...)
pass