Skip to content

Commit

Permalink
reduce min sizes so more compact configs work without scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
rcoreilly committed Jul 20, 2024
1 parent cf28c99 commit bae966d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/texteditor.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
})
}

Expand Down

0 comments on commit bae966d

Please sign in to comment.