From 321cc5ced5456d8c4fd4ab9a042ac1bf2d143089 Mon Sep 17 00:00:00 2001 From: Max Wilfinger <6246609+maxwxyz@users.noreply.github.com> Date: Thu, 7 Aug 2025 09:16:55 +0200 Subject: [PATCH] Gui: Fix crash with navlib Co-authored-by: @hyarion --- src/Gui/CommandDoc.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Gui/CommandDoc.cpp b/src/Gui/CommandDoc.cpp index 7790fcb059..c4acd82b69 100644 --- a/src/Gui/CommandDoc.cpp +++ b/src/Gui/CommandDoc.cpp @@ -610,9 +610,7 @@ StdCmdExportDependencyGraph::StdCmdExportDependencyGraph() { sGroup = "Tools"; sMenuText = QT_TR_NOOP("Export Dependency &Graph"); - - QT_TR_NOOP("Exports the dependency graph as a Graphviz (.gv) file"); - + sToolTipText = QT_TR_NOOP("Exports the dependency graph as a Graphviz (.gv) file"); sStatusTip = sToolTipText; sWhatsThis = "Std_ExportDependencyGraph"; eType = 0; @@ -2039,3 +2037,4 @@ void CreateDocCommands() } } // namespace Gui +