@@ -, +, @@ --- installer/data/mysql/atomicupdate/bug_17178.perl | 10 ++++++++++ installer/data/mysql/mandatory/keyboard_shortcuts.sql | 3 ++- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 installer/data/mysql/atomicupdate/bug_17178.perl --- a/installer/data/mysql/atomicupdate/bug_17178.perl +++ a/installer/data/mysql/atomicupdate/bug_17178.perl @@ -0,0 +1,10 @@ +$DBversion = 'XXX'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{ + INSERT INTO keyboard_shortcuts (shortcut_name, shortcut_keys) + VALUES ("toggle_keyboard", "Shift-Ctrl-K") + }); + + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 17178 - add shortcut to keyboard_shortcuts)\n"; +} --- a/installer/data/mysql/mandatory/keyboard_shortcuts.sql +++ a/installer/data/mysql/mandatory/keyboard_shortcuts.sql @@ -31,4 +31,5 @@ INSERT INTO keyboard_shortcuts (shortcut_name, shortcut_keys) VALUES ("new_line","Enter"), ("line_break","Shift-Enter"), ("next_position","Tab"), - ("prev_position","Shift-Tab"); + ("prev_position","Shift-Tab"), + ("toggle_keyboard", "Shift-Ctrl-K"); --