Use softer and more consistent technique to indicate preset color
- Issue MatterHackers/MCCentral#3151 Revise preset selector styling
This commit is contained in:
parent
267f683e9c
commit
ce6c9d10fa
3 changed files with 31 additions and 24 deletions
|
|
@ -42,9 +42,15 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
|
|||
|
||||
int numberOfHeatedExtruders = printer.Settings.Helpers.NumberOfHotends();
|
||||
|
||||
this.AddChild(new PresetSelectorWidget(printer, "Quality".Localize(), theme.PresetColors.QualityPreset, NamedSettingsLayers.Quality, theme));
|
||||
this.AddChild(new PresetSelectorWidget(printer, "Quality".Localize(), theme.PresetColors.QualityPreset, NamedSettingsLayers.Quality, theme)
|
||||
{
|
||||
BackgroundColor = theme.MinimalShade
|
||||
});
|
||||
this.AddChild(new GuiWidget(8, 0));
|
||||
this.AddChild(new PresetSelectorWidget(printer, "Material".Localize(), theme.PresetColors.MaterialPreset, NamedSettingsLayers.Material, theme));
|
||||
this.AddChild(new PresetSelectorWidget(printer, "Material".Localize(), theme.PresetColors.MaterialPreset, NamedSettingsLayers.Material, theme)
|
||||
{
|
||||
BackgroundColor = theme.MinimalShade
|
||||
});
|
||||
|
||||
this.Height = 60 * GuiWidget.DeviceScale;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue