From 638e677bd31214d17e8a297e127fd6381cd35084 Mon Sep 17 00:00:00 2001 From: Roy-043 Date: Sat, 23 Nov 2024 12:33:01 +0100 Subject: [PATCH] Increase the delay to be on the safe side. --- src/Mod/Draft/InitGui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Draft/InitGui.py b/src/Mod/Draft/InitGui.py index 108b5af924..f05b5af564 100644 --- a/src/Mod/Draft/InitGui.py +++ b/src/Mod/Draft/InitGui.py @@ -170,7 +170,7 @@ class DraftWorkbench(FreeCADGui.Workbench): # Delay required in case the Draft WB is preloaded, # else show_draft_statusbar will not yet be done: t = QtCore.QTimer() - t.singleShot(500, init_draft_statusbar.hide_draft_statusbar) + t.singleShot(700, init_draft_statusbar.hide_draft_statusbar) import WorkingPlane WorkingPlane._view_observer_stop() from draftutils import grid_observer