@@ -815,14 +815,14 @@ Printrun. If not, see <http://www.gnu.org/licenses/>."""
self.settings._add(FloatSpinSetting("preview_extrusion_width",0.5,0,10,_("Preview extrusion width"),_("Width of Extrusion in Preview"),"UI"),self.update_gviz_params)
self.settings._add(StringSetting("gcview_color_background","#FAFAC7FF",_("3D view background color"),_("Color of the 3D view background"),"Colors"),self.update_gcview_colors)
self.settings._add(StringSetting("gcview_color_travel","#99999999",_("3D view travel moves color"),_("Color of travel moves in 3D view"),"Colors"),self.update_gcview_colors)
self.settings._add(StringSetting("gcview_color_tool0","#FF000099",_("3D view print moves color"),_("Color of print moves with tool 0 in 3D view"),"Colors"),self.update_gcview_colors)
self.settings._add(StringSetting("gcview_color_tool1","#4F0CE599",_("3D view tool 1 moves color"),_("Color of print moves with tool 1 in 3D view"),"Colors"),self.update_gcview_colors)
self.settings._add(StringSetting("gcview_color_printed","#33BF0099",_("3D view printed moves color"),_("Color of printed moves in 3D view"),"Colors"),self.update_gcview_colors)
self.settings._add(StringSetting("gcview_color_current","#00E5FFCC",_("3D view current layer moves color"),_("Color of moves in current layer in 3D view"),"Colors"),self.update_gcview_colors)
self.settings._add(StringSetting("gcview_color_current_printed","#196600CC",_("3D view printed current layer moves color"),_("Color of already printed moves from current layer in 3D view"),"Colors"),self.update_gcview_colors)
self.settings._add(StringSetting("gcview_color_background","#FAFAC7FF",_("3D view background color"),_("Color of the 3D view background"),"Colors"),self.update_gcview_colors,validate=check_rgba_color)
self.settings._add(StringSetting("gcview_color_travel","#99999999",_("3D view travel moves color"),_("Color of travel moves in 3D view"),"Colors"),self.update_gcview_colors,validate=check_rgba_color)
self.settings._add(StringSetting("gcview_color_tool0","#FF000099",_("3D view print moves color"),_("Color of print moves with tool 0 in 3D view"),"Colors"),self.update_gcview_colors,validate=check_rgba_color)
self.settings._add(StringSetting("gcview_color_tool1","#4F0CE599",_("3D view tool 1 moves color"),_("Color of print moves with tool 1 in 3D view"),"Colors"),self.update_gcview_colors,validate=check_rgba_color)
self.settings._add(StringSetting("gcview_color_printed","#33BF0099",_("3D view printed moves color"),_("Color of printed moves in 3D view"),"Colors"),self.update_gcview_colors,validate=check_rgba_color)
self.settings._add(StringSetting("gcview_color_current","#00E5FFCC",_("3D view current layer moves color"),_("Color of moves in current layer in 3D view"),"Colors"),self.update_gcview_colors,validate=check_rgba_color)
self.settings._add(StringSetting("gcview_color_current_printed","#196600CC",_("3D view printed current layer moves color"),_("Color of already printed moves from current layer in 3D view"),"Colors"),self.update_gcview_colors,validate=check_rgba_color)
self.settings._add(StaticTextSetting("note1",_("Note:"),_("Changing most settings here will require restart to get effect"),group="UI"))