From 45008e542700c4d08f51670a89a83659d51bd142 Mon Sep 17 00:00:00 2001 From: Pablo Gil Date: Fri, 15 Nov 2024 13:39:53 +0100 Subject: [PATCH] little hack to make more room for QButtons as they are pretty long --- src/app/GUI/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/GUI/mainwindow.cpp b/src/app/GUI/mainwindow.cpp index d393cef5f..63ad4b946 100644 --- a/src/app/GUI/mainwindow.cpp +++ b/src/app/GUI/mainwindow.cpp @@ -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",