Better quality setting
This commit is contained in:
parent
0c99e76f4e
commit
0e838db290
1 changed files with 10 additions and 0 deletions
|
|
@ -369,6 +369,16 @@ namespace MatterHackers.MatterControl.PrintHistory
|
|||
VAnchor = VAnchor.Fit,
|
||||
};
|
||||
|
||||
button.MouseEnterBounds += (s, e) =>
|
||||
{
|
||||
button.BackgroundColor = theme.AccentMimimalOverlay;
|
||||
};
|
||||
|
||||
button.MouseLeaveBounds += (s, e) =>
|
||||
{
|
||||
button.BackgroundColor = button.Checked ? theme.AccentMimimalOverlay : Color.Transparent;
|
||||
};
|
||||
|
||||
siblings.Add(button);
|
||||
|
||||
if (button.Checked && button.Enabled)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue