diff --git a/button.go b/button.go index 20b3a2f..604364d 100644 --- a/button.go +++ b/button.go @@ -6,7 +6,7 @@ import "git.tebibyte.media/tomo/tomo/event" import "git.tebibyte.media/tomo/objects/layouts" var buttonLayout = layouts.NewGrid([]bool { true }, []bool { true }) -var iconButtonLayout = layouts.NewGrid([]bool { false }, []bool { true }) +var iconButtonLayout = layouts.NewGrid([]bool { true }, []bool { true }) var bothButtonLayout = layouts.NewGrid([]bool { false, true }, []bool { true }) // Button is a clickable button.