From cf15c637b858836487cd46f2f579918af7233887 Mon Sep 17 00:00:00 2001 From: Pieter Hijma Date: Mon, 1 Sep 2025 15:30:03 +0200 Subject: [PATCH] Gui: Process minor review comments Co-authored-by: Max Wilfinger <6246609+maxwxyz@users.noreply.github.com> --- src/Gui/propertyeditor/PropertyEditor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Gui/propertyeditor/PropertyEditor.cpp b/src/Gui/propertyeditor/PropertyEditor.cpp index fe8a66e533..73bfca0114 100644 --- a/src/Gui/propertyeditor/PropertyEditor.cpp +++ b/src/Gui/propertyeditor/PropertyEditor.cpp @@ -949,8 +949,8 @@ void PropertyEditor::contextMenuEvent(QContextMenuEvent*) bool ok = false; const QString currentTooltip = QString::fromUtf8(prop->getDocumentation()); QString newTooltip = QInputDialog::getMultiLineText(Gui::getMainWindow(), - tr("Edit property tooltip"), - tr("Tooltip:"), + tr("Edit Property Tooltip"), + tr("Tooltip"), currentTooltip, &ok); if (!ok || newTooltip == currentTooltip) {