From e79beed49166c9f43e65fb9a0402677dc57a59ae Mon Sep 17 00:00:00 2001 From: Roy-043 Date: Mon, 20 Jan 2025 20:53:25 +0100 Subject: [PATCH] Draft: DraftGui.py improve some tooltips Avoid 'new point' and 'next point' in tooltips as this does not always apply. --- src/Mod/Draft/DraftGui.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Mod/Draft/DraftGui.py b/src/Mod/Draft/DraftGui.py index 517add0548..508a257f62 100644 --- a/src/Mod/Draft/DraftGui.py +++ b/src/Mod/Draft/DraftGui.py @@ -526,15 +526,15 @@ class DraftToolBar: self.promptlabel.setText(translate("draft", "active command:")) self.cmdlabel.setText(translate("draft", "None")) self.cmdlabel.setToolTip(translate("draft", "Active Draft command")) - self.xValue.setToolTip(translate("draft", "X coordinate of next point")) + self.xValue.setToolTip(translate("draft", "X coordinate of point")) self.labelx.setText(translate("draft", "X")) self.labely.setText(translate("draft", "Y")) self.labelz.setText(translate("draft", "Z")) - self.yValue.setToolTip(translate("draft", "Y coordinate of next point")) - self.zValue.setToolTip(translate("draft", "Z coordinate of next point")) + self.yValue.setToolTip(translate("draft", "Y coordinate of point")) + self.zValue.setToolTip(translate("draft", "Z coordinate of point")) self.pointButton.setText(translate("draft", "Enter point")) self.pointButton.setToolTip(translate( - "draft","Enter a new point with the given coordinates")) + "draft","Enter point with given coordinates")) self.labellength.setText(translate("draft", "Length")) self.labelangle.setText(translate("draft", "Angle")) self.lengthValue.setToolTip(translate("draft", "Length of current segment"))