Skip to content
This repository has been archived by the owner on Dec 4, 2020. It is now read-only.

Commit

Permalink
Clean up the LP waitbox, so that it no longer shows the "ok" button.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Moore committed Oct 28, 2013
1 parent cb30a16 commit 8b3a780
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src-qt4/life-preserver/lp-gui/LPGUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ QString LPGUtils::packageHomeDir(QString username, QString packageName){
}
//Run the command
qDebug() << "Package command:" << cmd << args;
LPBackend::runCmd(cmd, args);
LPBackend::runCmd(cmd, args); //need to use this version due to the complex command

//Check that the package was created
QString packagePath;
Expand Down
1 change: 1 addition & 0 deletions src-qt4/life-preserver/lp-gui/LPMain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ void LPMain::showWaitBox(QString message){
if(waitBox == 0){
qDebug() << "New Wait Box";
waitBox = new QMessageBox(QMessageBox::NoIcon, tr("Please Wait"), message, QMessageBox::NoButton, this);
waitBox->setStandardButtons(QMessageBox::NoButton);
waitBox->setWindowModality(Qt::WindowModal);
}else{
qDebug() << "Update Wait Box:" << message;
Expand Down

0 comments on commit 8b3a780

Please sign in to comment.