aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-info/main.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2016-08-01 15:43:14 -0400
committerKen Moore <ken@pcbsd.org>2016-08-01 15:43:14 -0400
commit7a42cee7e707c7cd6015256cda43ca55eee90408 (patch)
tree3986866b7e77071ed7c7b91cd28b5704a6786d06 /src-qt5/core/lumina-info/main.cpp
parentAdd in the possibility of a "nowatch" file/flag for lumina-open to avoid watc... (diff)
downloadlumina-7a42cee7e707c7cd6015256cda43ca55eee90408.tar.gz
lumina-7a42cee7e707c7cd6015256cda43ca55eee90408.tar.bz2
lumina-7a42cee7e707c7cd6015256cda43ca55eee90408.zip
Cleanup the sizing of the new QToolButtons a bit (ensure uniform sizes - does not touch screenshots since they are recessed by default).
Diffstat (limited to 'src-qt5/core/lumina-info/main.cpp')
-rw-r--r--src-qt5/core/lumina-info/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-info/main.cpp b/src-qt5/core/lumina-info/main.cpp
index 38cae2ad..b8eb0dce 100644
--- a/src-qt5/core/lumina-info/main.cpp
+++ b/src-qt5/core/lumina-info/main.cpp
@@ -23,7 +23,8 @@ int main(int argc, char ** argv)
//Start the UI
MainUI w;
QObject::connect(&a, SIGNAL(InputsAvailable(QStringList)), &w, SLOT(slotSingleInstance()) );
- w.show();
+ //qDebug() << "Show Normal";
+ w.showNormal();
int retCode = a.exec();
return retCode;
bgstack15