Skip to content

Commit

Permalink
Merge pull request #78 from ComradeProgrammer/starting_status
Browse files Browse the repository at this point in the history
fix: fix progress window for 'minikube start'
  • Loading branch information
medyagh authored Jul 17, 2023
2 parents 2ba94bd + 55740e0 commit 5a9a4af
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/operator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ void Operator::createCluster(QStringList args)

void Operator::startCommandStarting()
{
commandStarting();
m_progressWindow->setText("Starting...");
m_progressWindow->show();
}
Expand Down
2 changes: 1 addition & 1 deletion src/progresswindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ void ProgressWindow::show()
{
m_dialog->setWindowIcon(m_icon);
m_dialog->resize(300, 150);
m_dialog->setWindowFlags(Qt::FramelessWindowHint);
m_dialog->setWindowFlags(m_dialog->windowFlags() | Qt::FramelessWindowHint);
m_dialog->setModal(true);

QVBoxLayout form(m_dialog);
Expand Down

0 comments on commit 5a9a4af

Please sign in to comment.