fix dark theme

This commit is contained in:
Vadim Lopatin 2015-03-27 14:22:36 +03:00
parent e9a668407c
commit 06294ae9eb
1 changed files with 1 additions and 1 deletions

View File

@ -101,6 +101,7 @@ class IDEFrame : AppFrame {
window.onFilesDropped = &onFilesDropped; window.onFilesDropped = &onFilesDropped;
window.onCanClose = &onCanClose; window.onCanClose = &onCanClose;
window.onClose = &onWindowClose; window.onClose = &onWindowClose;
applySettings(_settings);
} }
override protected void init() { override protected void init() {
@ -112,7 +113,6 @@ class IDEFrame : AppFrame {
_settings.updateDefaults(); _settings.updateDefaults();
_settings.save(); _settings.save();
super.init(); super.init();
applySettings(_settings);
} }
/// move focus to editor in currently selected tab /// move focus to editor in currently selected tab