diff options
author | Ken Moore <ken@ixsystems.com> | 2016-11-20 13:21:49 -0500 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2016-11-20 13:21:49 -0500 |
commit | 0bf0b86dc0a509a6fb432bac0d1d89d838f655a6 (patch) | |
tree | df075ff8673b306c61654075c77942264e9b3976 /src-qt5/core-utils/lumina-config/mainWindow.cpp | |
parent | comment out changes made to wrong repo, until method can be fixed (diff) | |
download | lumina-0bf0b86dc0a509a6fb432bac0d1d89d838f655a6.tar.gz lumina-0bf0b86dc0a509a6fb432bac0d1d89d838f655a6.tar.bz2 lumina-0bf0b86dc0a509a6fb432bac0d1d89d838f655a6.zip |
Revert "comment out changes made to wrong repo, until method can be fixed"
This reverts commit 876173714461d6f9d104636d90e648c9f7009505.
Diffstat (limited to 'src-qt5/core-utils/lumina-config/mainWindow.cpp')
-rw-r--r-- | src-qt5/core-utils/lumina-config/mainWindow.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src-qt5/core-utils/lumina-config/mainWindow.cpp b/src-qt5/core-utils/lumina-config/mainWindow.cpp index de49f22b..ecaf2990 100644 --- a/src-qt5/core-utils/lumina-config/mainWindow.cpp +++ b/src-qt5/core-utils/lumina-config/mainWindow.cpp @@ -9,6 +9,7 @@ #include "globals.h" #include "pages/getPage.h" +#include "pages/page_main.h" //============= // PUBLIC @@ -133,7 +134,10 @@ void mainWindow::on_actionSave_triggered(){ } void mainWindow::on_actionBack_triggered(){ - if(cpage.isEmpty()){ /* page_main::clearlineEdit(); */ } //since ESC doesnt close any other Lumina Appliction by default, I've commented this out for the time being. + if(cpage.isEmpty()){ page_main::clearlineEdit(); } //since ESC doesnt close any other Lumina Appliction by default, I've +commented this out for +the +time being. else{ page_change(""); } //Use the interactive wrapper (check for save state, etc). } |