We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d7610f commit 4dfe4f7Copy full SHA for 4dfe4f7
1 file changed
src/MainWindow.cpp
@@ -1534,7 +1534,11 @@ void MainWindow::openRecentFile()
1534
read_only = true;
1535
}
1536
1537
- fileOpen(file, false, read_only);
+ if(fileOpen(file, false, read_only))
1538
+ if(read_only)
1539
+ ui->statusbar->showMessage(tr("Opened '%1' in read-only mode from recent file list").arg(file));
1540
+ else
1541
+ ui->statusbar->showMessage(tr("Opened '%1' from recent file list").arg(file));
1542
1543
1544
0 commit comments