From 82bd849bfed04b7de3546ee0f642604262baf397 Mon Sep 17 00:00:00 2001 From: Damian Mendroch Date: Tue, 8 Jul 2025 11:49:56 +0200 Subject: [PATCH] Fix scene toolbar size and spacing. --- tvtk/pyface/ui/qt4/decorated_scene.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tvtk/pyface/ui/qt4/decorated_scene.py b/tvtk/pyface/ui/qt4/decorated_scene.py index b4994d9e5..a2d6f6087 100644 --- a/tvtk/pyface/ui/qt4/decorated_scene.py +++ b/tvtk/pyface/ui/qt4/decorated_scene.py @@ -133,7 +133,7 @@ def _setup_axes_marker(self): def _get_tool_bar_manager(self): """ Returns the tool_bar_manager for this scene. """ - tbm = ToolBarManager( *self.actions ) + tbm = ToolBarManager( *self.actions, show_tool_names=False) return tbm