From ee8cff2b41ebee97c2e091f883a01246d4a5decc Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Tue, 13 Jan 2026 00:50:38 +0300 Subject: Enha: enable mouse switch --- props_table.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'props_table.go') diff --git a/props_table.go b/props_table.go index d86e0b4..a235d7c 100644 --- a/props_table.go +++ b/props_table.go @@ -132,6 +132,11 @@ func makePropsTable(props map[string]float32) *tview.Table { addCheckboxRow("Auto clean tool calls from context", cfg.AutoCleanToolCallsFromCtx, func(checked bool) { cfg.AutoCleanToolCallsFromCtx = checked }) + addCheckboxRow("Enable Mouse", cfg.EnableMouse, func(checked bool) { + cfg.EnableMouse = checked + // Reconfigure the app's mouse setting + app.EnableMouse(cfg.EnableMouse) + }) // Add dropdowns logLevels := []string{"Debug", "Info", "Warn"} addListPopupRow("Set log level", logLevels, GetLogLevel(), func(option string) { -- cgit v1.2.3