Skip to content

Commit

Permalink
Fix #13007: GUI: The 'reanalyze modified files' option is disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
olabetskyi committed Aug 15, 2024
1 parent f4c9f3a commit 81e8447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1462,7 +1462,7 @@ void MainWindow::enableCheckButtons(bool enable)
mUI->mActionAnalyzeFiles->setEnabled(enable);

if (mProjectFile) {
mUI->mActionReanalyzeModified->setEnabled(false);
mUI->mActionReanalyzeModified->setEnabled(enable);
mUI->mActionReanalyzeAll->setEnabled(enable);
} else if (!enable || mThread->hasPreviousFiles()) {
mUI->mActionReanalyzeModified->setEnabled(enable);
Expand Down

0 comments on commit 81e8447

Please sign in to comment.