- small UI fix in Milling Plugin
This commit is contained in:
committed by
Marius Stanciu
parent
c3ac752c12
commit
7390d01447
@@ -3591,11 +3591,6 @@ class MillingUI:
|
||||
# Tool Table Frame
|
||||
# #############################################################################################################
|
||||
# ### Tools ####
|
||||
self.tools_table_label = FCLabel('<span style="color:green;"><b>%s</b></span>' % _('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('<span style="color:green;"><b>%s</b></span>' % _('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."))
|
||||
|
||||
Reference in New Issue
Block a user