aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-config/mainWindow.cpp
diff options
context:
space:
mode:
authorq5sys <jt@obs-sec.com>2016-11-20 01:56:04 -0500
committerq5sys <jt@obs-sec.com>2016-11-20 01:56:04 -0500
commit876173714461d6f9d104636d90e648c9f7009505 (patch)
tree6b0b5aaf07061084fc9ff25b515f06c47e078820 /src-qt5/core-utils/lumina-config/mainWindow.cpp
parentRevert "search clear function on ESC press" (diff)
downloadlumina-876173714461d6f9d104636d90e648c9f7009505.tar.gz
lumina-876173714461d6f9d104636d90e648c9f7009505.tar.bz2
lumina-876173714461d6f9d104636d90e648c9f7009505.zip
comment out changes made to wrong repo, until method can be fixed
Diffstat (limited to 'src-qt5/core-utils/lumina-config/mainWindow.cpp')
-rw-r--r--src-qt5/core-utils/lumina-config/mainWindow.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src-qt5/core-utils/lumina-config/mainWindow.cpp b/src-qt5/core-utils/lumina-config/mainWindow.cpp
index ecaf2990..de49f22b 100644
--- a/src-qt5/core-utils/lumina-config/mainWindow.cpp
+++ b/src-qt5/core-utils/lumina-config/mainWindow.cpp
@@ -9,7 +9,6 @@
#include "globals.h"
#include "pages/getPage.h"
-#include "pages/page_main.h"
//=============
// PUBLIC
@@ -134,10 +133,7 @@ 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).
}
bgstack15