diff options
author | Michele Calgaro <[email protected]> | 2022-08-24 20:55:24 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2022-08-25 18:25:48 +0900 |
commit | 7fed9587e9673983fe4128557baa33b23b71076f (patch) | |
tree | 8604505e8b463b97522e5a5ac68bf4dda018bbdf /khotkeys/shared/settings.cpp | |
parent | 5e4ca4df9bb34e10a897e32e7e0ca8645b97f293 (diff) | |
download | tdebase-7fed9587e9673983fe4128557baa33b23b71076f.tar.gz tdebase-7fed9587e9673983fe4128557baa33b23b71076f.zip |
khotkeys: added 'waiting' action to the list of available choices.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'khotkeys/shared/settings.cpp')
-rw-r--r-- | khotkeys/shared/settings.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/khotkeys/shared/settings.cpp b/khotkeys/shared/settings.cpp index 76adac6b9..becacd5d1 100644 --- a/khotkeys/shared/settings.cpp +++ b/khotkeys/shared/settings.cpp @@ -145,9 +145,11 @@ void Settings::write_settings() gestures_exclude->cfg_write( cfg ); } else + { cfg.deleteGroup( "GesturesExclude" ); - cfg.setGroup( "Voice" ); - cfg.writeEntry("Shortcut" , voice_shortcut.toStringInternal() ); + } + cfg.setGroup( "Voice" ); + cfg.writeEntry("Shortcut" , voice_shortcut.toStringInternal() ); } |