Reenabled profiles. Fixes in the settings window.

This commit is contained in:
Filippo Scognamiglio
2014-03-31 22:23:48 +02:00
parent 8611f815e7
commit 984c4aaa23
6 changed files with 114 additions and 27 deletions
+9 -4
View File
@@ -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;
}
}
}