From f3c043195fbe7982284b66bd24f4e82fbc1e2dec Mon Sep 17 00:00:00 2001 From: Benjamin Nauck Date: Wed, 8 Oct 2025 11:58:32 +0200 Subject: [PATCH] Gui: Enable quick measure and input hints by default --- src/Gui/StatusBarLabel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/StatusBarLabel.cpp b/src/Gui/StatusBarLabel.cpp index c787b27ba6..960a5728a7 100644 --- a/src/Gui/StatusBarLabel.cpp +++ b/src/Gui/StatusBarLabel.cpp @@ -42,7 +42,7 @@ StatusBarLabel::StatusBarLabel(QWidget *parent, const std::string& parameterName "User parameter:BaseApp/Preferences/MainWindow"); // set visibility before storing parameterName to avoid saving it immediately - setVisible(hGrp->GetBool(parameterName.c_str(), false)); + setVisible(hGrp->GetBool(parameterName.c_str(), true)); // now we can store parameterName this->parameterName = parameterName;