Techdraw: fix dialog text in Gui/Command.cpp (#24165)

This commit is contained in:
luzpaz
2025-09-23 14:47:02 -04:00
committed by GitHub
parent 520dafa03c
commit d092a94902

View File

@@ -422,9 +422,9 @@ void CmdTechDrawView::activated(int iMsg)
// If nothing was selected, then we offer to insert SVG or Images files.
bool dontShowAgain = hGrp->GetBool("DontShowInsertFileMessage", false);
if (!dontShowAgain) {
auto msgText = QObject::tr("to insert a view from existing objects, "
auto msgText = QObject::tr("To insert a view from existing objects, "
"select them before invoking this tool. Without a selection, a "
"file browser will open to insert a SVG or image file.");
"file browser will open to insert an SVG or image file.");
QMessageBox msgBox(Gui::getMainWindow());
msgBox.setText(msgText);
auto dontShowMsg = QObject::tr("Do not show this message again");