- some changes in the theme selection, added that the default situation is where no theme is applied
- some string changes
This commit is contained in:
@@ -496,14 +496,14 @@ class GeneralAPPSetGroupUI(OptionsGroupUI):
|
||||
if theme_settings.contains("theme"):
|
||||
theme = theme_settings.value('theme', type=str)
|
||||
else:
|
||||
theme = 'light'
|
||||
theme = 'default'
|
||||
|
||||
if theme_settings.contains("dark_canvas"):
|
||||
dark_canvas = theme_settings.value('dark_canvas', type=bool)
|
||||
else:
|
||||
dark_canvas = True
|
||||
dark_canvas = False
|
||||
|
||||
if theme == 'light' and not dark_canvas:
|
||||
if (theme == 'default' or theme == 'light') and not dark_canvas:
|
||||
self.app.cursor_color_3D = 'black'
|
||||
else:
|
||||
self.app.cursor_color_3D = 'gray'
|
||||
|
||||
Reference in New Issue
Block a user