From 3eb160ac87f3ef8933d925496de7a8cff60f1e77 Mon Sep 17 00:00:00 2001 From: Syres916 <46537884+Syres916@users.noreply.github.com> Date: Sun, 8 Jun 2025 18:43:11 +0100 Subject: [PATCH] [Start] add Tooltip to show full path when the ShortCustomFolder is true --- src/Mod/Start/Gui/StartView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Mod/Start/Gui/StartView.cpp b/src/Mod/Start/Gui/StartView.cpp index 9aa986569e..ce8c25d3a9 100644 --- a/src/Mod/Start/Gui/StartView.cpp +++ b/src/Mod/Start/Gui/StartView.cpp @@ -448,6 +448,7 @@ void StartView::retranslateUi() bool shortCustomFolder = hGrp->GetBool("ShortCustomFolder", true); // false shows full path if (!customFolder.empty()) { if (shortCustomFolder) { + _customFolderLabel->setToolTip(QString::fromUtf8(customFolder.c_str())); customFolder = customFolder.substr(customFolder.find_last_of("/\\") + 1); } _customFolderLabel->setText(h1Start + QString::fromUtf8(customFolder.c_str()) + h1End);