From bae966df1cbad3ebb1543a9abcea63d193a2d518 Mon Sep 17 00:00:00 2001 From: "Randall C. O'Reilly" Date: Sat, 20 Jul 2024 02:31:23 -0700 Subject: [PATCH] reduce min sizes so more compact configs work without scrolling --- code/texteditor.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/texteditor.go b/code/texteditor.go index 25823414..c79aa322 100644 --- a/code/texteditor.go +++ b/code/texteditor.go @@ -187,8 +187,8 @@ func ConfigOutputTextEditor(ed *texteditor.Editor) { func ConfigEditorTextEditor(ed *texteditor.Editor) { ed.Styler(func(s *styles.Style) { s.Grow.Set(1, 1) - s.Min.X.Ch(80) - s.Min.Y.Em(40) + s.Min.X.Ch(60) + s.Min.Y.Em(20) }) }