Reenabled profiles. Fixes in the settings window.
This commit is contained in:
+9
-4
@@ -49,7 +49,7 @@ ApplicationWindow{
|
||||
Action{
|
||||
id: showsettingsAction
|
||||
text: "&Settings"
|
||||
onTriggered: settingswindow.show();
|
||||
onTriggered: settingswindowloader.active = true;
|
||||
}
|
||||
|
||||
menuBar: MenuBar {
|
||||
@@ -132,8 +132,13 @@ ApplicationWindow{
|
||||
id: shadersettings
|
||||
Component.onCompleted: terminal.loadKTerminal();
|
||||
}
|
||||
SettingsWindow{
|
||||
id: settingswindow
|
||||
visible: false
|
||||
Loader{
|
||||
id: settingswindowloader
|
||||
active: false
|
||||
sourceComponent: SettingsWindow{
|
||||
id: settingswindow
|
||||
visible: true
|
||||
onClosing: settingswindowloader.active = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user