Enha: update config

This commit is contained in:
Grail Finder
2026-02-03 12:04:20 +03:00
parent 65b4f01177
commit 0f5bbaa943
3 changed files with 22 additions and 15 deletions

View File

@@ -140,6 +140,9 @@ func makePropsTable(props map[string]float32) *tview.Table {
addCheckboxRow("Auto turn (for cards with many chars)", cfg.AutoTurn, func(checked bool) {
cfg.AutoTurn = checked
})
addCheckboxRow("Char specific context", cfg.CharSpecificContextEnabled, func(checked bool) {
cfg.CharSpecificContextEnabled = checked
})
// Add dropdowns
logLevels := []string{"Debug", "Info", "Warn"}
addListPopupRow("Set log level", logLevels, GetLogLevel(), func(option string) {