From 7390d014474d69e76d89cc2bd8b9a5d1a2c641ae Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Mon, 6 Sep 2021 01:27:33 +0300 Subject: [PATCH] - small UI fix in Milling Plugin --- appPlugins/ToolMilling.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/appPlugins/ToolMilling.py b/appPlugins/ToolMilling.py index 4ae70a2c..bd238ad3 100644 --- a/appPlugins/ToolMilling.py +++ b/appPlugins/ToolMilling.py @@ -3591,11 +3591,6 @@ class MillingUI: # Tool Table Frame # ############################################################################################################# # ### Tools #### - self.tools_table_label = FCLabel('%s' % _('Tools Table')) - self.tools_table_label.setToolTip( - _("Tools in the object used for milling.") - ) - self.tools_box.addWidget(self.tools_table_label) # Grid Layout grid_title_tool_table = FCGridLayout(v_spacing=5, h_spacing=3) @@ -3603,6 +3598,12 @@ class MillingUI: grid_title_tool_table.setColumnStretch(1, 1) self.tools_box.addLayout(grid_title_tool_table) + self.tools_table_label = FCLabel('%s' % _('Tools Table')) + self.tools_table_label.setToolTip( + _("Tools in the object used for milling.") + ) + grid_title_tool_table.addWidget(self.tools_table_label, 0, 0) + # Plot CB self.plot_cb = FCCheckBox(_('Plot Object')) self.plot_cb.setToolTip(_("Plot (show) this object."))