Skip to content

Commit

Permalink
little hack to make more room for QButtons as they are pretty long
Browse files Browse the repository at this point in the history
  • Loading branch information
pgilfernandez committed Nov 15, 2024
1 parent 260f422 commit 45008e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/GUI/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1475,7 +1475,7 @@ bool MainWindow::askForSaving() {
QString file = info.baseName();
if (file.isEmpty()) { file = tr("Untitled"); }

const QString question = tr("Save changes to document \"%1\"?",
const QString question = tr("Save changes to document \"%1\"? ", // empty spaces at the end of the question to make room for buttons
"AskSaveDialog_Question");
const QString questionWithTarget = question.arg(file);
const QString closeNoSave = tr("Close without saving",
Expand Down

0 comments on commit 45008e5

Please sign in to comment.