Skip to content

Commit 1aee490

Browse files
authored
Fix #13007: GUI: The 'reanalyze modified files' option is disabled (danmar#6699)
1 parent 474d356 commit 1aee490

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gui/mainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1462,7 +1462,7 @@ void MainWindow::enableCheckButtons(bool enable)
14621462
mUI->mActionAnalyzeFiles->setEnabled(enable);
14631463

14641464
if (mProjectFile) {
1465-
mUI->mActionReanalyzeModified->setEnabled(false);
1465+
mUI->mActionReanalyzeModified->setEnabled(enable);
14661466
mUI->mActionReanalyzeAll->setEnabled(enable);
14671467
} else if (!enable || mThread->hasPreviousFiles()) {
14681468
mUI->mActionReanalyzeModified->setEnabled(enable);

0 commit comments

Comments
 (0)