summaryrefslogtreecommitdiff
path: root/props_table.go
diff options
context:
space:
mode:
Diffstat (limited to 'props_table.go')
-rw-r--r--props_table.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/props_table.go b/props_table.go
index 448044c..7807522 100644
--- a/props_table.go
+++ b/props_table.go
@@ -121,6 +121,9 @@ func makePropsTable(props map[string]float32) *tview.Table {
addCheckboxRow("Inject role", injectRole, func(checked bool) {
injectRole = checked
})
+ addCheckboxRow("TTS Enabled", cfg.TTS_ENABLED, func(checked bool) {
+ cfg.TTS_ENABLED = checked
+ })
// Add dropdowns
logLevels := []string{"Debug", "Info", "Warn"}
addListPopupRow("Set log level", logLevels, GetLogLevel(), func(option string) {