diff options
| author | ewy <ewy0@protonmail.com> | 2026-05-02 19:14:02 +0200 |
|---|---|---|
| committer | ewy <ewy0@protonmail.com> | 2026-05-02 19:14:02 +0200 |
| commit | 45847dc53ec51c090175d8621711250b60b28263 (patch) | |
| tree | 167f836037a75f441a1f2bdc53dbab096cd2806a /menu/model.go | |
| parent | d1633e905a1487e8845088c03db8faf53d587e46 (diff) | |
initialize altscreen properly
Diffstat (limited to 'menu/model.go')
| -rw-r--r-- | menu/model.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/menu/model.go b/menu/model.go index 4480c96..302315a 100644 --- a/menu/model.go +++ b/menu/model.go @@ -4,6 +4,7 @@ import ( "github.com/charmbracelet/bubbles/textinput" tea "github.com/charmbracelet/bubbletea" "github.com/charmbracelet/x/term" + "github.com/ewy1/pik/flags" "github.com/ewy1/pik/model" "github.com/ewy1/pik/motd" "github.com/ewy1/pik/spool" @@ -145,6 +146,7 @@ func NewModel(st *model.State, hydrators []model.Modder) *Model { Index: 0, Indices: make(map[int]model.HydratedTarget), SourceIndices: make(map[int]*model.HydratedSource), + Alt: !*flags.Inline, AutoAlt: !pflag.Lookup("inline").Changed && !isBanned, Motd: motd.One(), Search: textinput.New(), |
