From 37a653ef33593f1f470b68eed1515f594ec9ffc2 Mon Sep 17 00:00:00 2001 From: Benjamin Nauck Date: Mon, 4 Aug 2025 19:17:15 +0200 Subject: [PATCH] Gui: Remove toggleskiprecomputes todos --- src/Gui/CommandFeat.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Gui/CommandFeat.cpp b/src/Gui/CommandFeat.cpp index 05af21cfca..371d430c5e 100644 --- a/src/Gui/CommandFeat.cpp +++ b/src/Gui/CommandFeat.cpp @@ -316,7 +316,6 @@ StdCmdToggleSkipRecompute::StdCmdToggleSkipRecompute() sToolTipText = toolTip.c_str(); sStatusTip = sToolTipText; sWhatsThis = "Std_ToggleSkipRecompute"; - //sPixmap = "Std_ToggleSkipRecomputes"; // TODO: to be added when icon is provided eType = AlterDoc; } @@ -324,7 +323,7 @@ Gui::Action* StdCmdToggleSkipRecompute::createAction() { Action* pcAction = Command::createAction(); pcAction->setCheckable(true); - pcAction->setIcon(QIcon()); // TODO: to be deleted, when icon is provided + pcAction->setIcon(QIcon()); _pcAction = pcAction; isActive(); return pcAction;