diff --git a/pkg/ui/shell.go b/pkg/ui/shell.go index 41c36537a..cde538acf 100644 --- a/pkg/ui/shell.go +++ b/pkg/ui/shell.go @@ -246,19 +246,19 @@ func (s *shell) refresh(ctx app.Context) { cw += s.IpaneWidth } - if hideMenu != s.hideMenu || - hideIndex != s.hideIndex || - hideAds != s.hideAds || - w != s.width { - s.hideMenu = hideMenu - s.hideIndex = hideIndex - s.hideAds = hideAds - s.width = w - - ctx.Defer(func(app.Context) { - s.ResizeContent() - }) - } + // if hideMenu != s.hideMenu || + // hideIndex != s.hideIndex || + // hideAds != s.hideAds || + // w != s.width { + // s.hideMenu = hideMenu + // s.hideIndex = hideIndex + // s.hideAds = hideAds + // s.width = w + + ctx.Defer(func(app.Context) { + s.ResizeContent() + }) + // } } func (s *shell) layoutSize() (int, int) {