summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/ui/table.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/internal/ui/table.go b/internal/ui/table.go
index b829501..ef81b9a 100644
--- a/internal/ui/table.go
+++ b/internal/ui/table.go
@@ -1325,3 +1325,9 @@ func (m *Model) applyTheme() {
func (m *Model) SetDisco(d bool) {
m.disco = d
}
+
+// SetUltra enables or disables ultra mode, causing the UI to start directly
+// in the ultra task list view instead of the default table view.
+func (m *Model) SetUltra(u bool) {
+ m.showUltra = u
+}