From f148177ffc36aa11633b67e0185d9ac7e48c9c64 Mon Sep 17 00:00:00 2001 From: Dietrich Featherston Date: Sat, 10 Jan 2026 16:24:22 -0600 Subject: [PATCH] more code cleanup --- main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.go b/main.go index dd9526c..37ba9fe 100644 --- a/main.go +++ b/main.go @@ -36,8 +36,8 @@ func Bootstrap() *Env { // set controls to use 1/6th of the width controlsRelWidth := 1.0 / 12.0 - defaultGraphicsWidth := 9 * int((float64(defaultWindowWidth) * (1.0 - controlsRelWidth))) - defaultGraphicsHeight := 9 * defaultWindowHeight + defaultGraphicsWidth := 5 * int((float64(defaultWindowWidth) * (1.0 - controlsRelWidth))) + defaultGraphicsHeight := 5 * defaultWindowHeight graphicsWidth := defaultGraphicsWidth graphicsHeight := defaultGraphicsHeight @@ -118,7 +118,7 @@ func main() { field: &AdderField{ fields: []Field{ - &ScaleField{scale: 4, field: imageField}, + &ScaleField{scale: 3, field: imageField}, &ScaleField{scale: 150, field: &SinXYField{ }}, }, },