aboutsummaryrefslogtreecommitdiff
path: root/lumina-config/mainUI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lumina-config/mainUI.cpp')
-rw-r--r--lumina-config/mainUI.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/lumina-config/mainUI.cpp b/lumina-config/mainUI.cpp
index 37667f40..a29de699 100644
--- a/lumina-config/mainUI.cpp
+++ b/lumina-config/mainUI.cpp
@@ -271,7 +271,7 @@ QString MainUI::getNewPanelPlugin(){
XDGDesktop MainUI::getSysApp(){
//Prompt the user to select an application on the system
- QStringList apps;
+ /*QStringList apps;
for(int i=0; i<sysApps.length(); i++){
apps << sysApps[i].name;
}
@@ -279,7 +279,11 @@ XDGDesktop MainUI::getSysApp(){
QString app = QInputDialog::getItem(this, tr("Select Application"), tr("App Name:"), apps, 0, false, &ok);
int index = apps.indexOf(app);
if(app.isEmpty() || index < 0 || !ok){ return XDGDesktop(); } //nothing selected
- else{ return sysApps[index]; }
+ else{ return sysApps[index]; }*/
+ AppDialog dlg(this, sysApps);
+ dlg.exec();
+ return dlg.appselected;
+
}
//Convert to/from fluxbox key codes
bgstack15