0.0.18 Added color and scale settings. /JL

This commit is contained in:
2022-12-13 21:51:41 +01:00
parent e2c2059e41
commit 5a4b01fde9
3 changed files with 81 additions and 22 deletions

View File

@@ -11,6 +11,7 @@ type (
BeadColor struct {
Brand string
Series string
Name string
ColorID int
Checkbox *walk.CheckBox
backgroundColor walk.Brush
@@ -33,6 +34,7 @@ func LoadBeads(mw *MyMainWindow) {
bc := NewBeadColor(mw, bead.ColorName, bead.ColorIndex, bead.Red, bead.Green, bead.Blue)
bc.Brand = brand.BrandName
bc.Series = series.SerieName
bc.Name = bead.ColorName
bc.ColorID = bead.ColorIndex
bc.Red = bead.Red
bc.Green = bead.Green