View | Details | Raw Unified | Return to bug 17178
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_17178.perl (+10 lines)
Line 0 Link Here
1
$DBversion = 'XXX';
2
if( CheckVersion( $DBversion ) ) {
3
    $dbh->do(q{
4
        INSERT INTO keyboard_shortcuts (shortcut_name, shortcut_keys)
5
            VALUES ("toggle_keyboard", "Shift-Ctrl-K")
6
    });
7
8
    SetVersion( $DBversion );
9
    print "Upgrade to $DBversion done (Bug 17178 - add shortcut to keyboard_shortcuts)\n";
10
}
(-)a/installer/data/mysql/mandatory/keyboard_shortcuts.sql (-2 / +2 lines)
Lines 31-34 INSERT INTO keyboard_shortcuts (shortcut_name, shortcut_keys) VALUES Link Here
31
    ("new_line","Enter"),
31
    ("new_line","Enter"),
32
    ("line_break","Shift-Enter"),
32
    ("line_break","Shift-Enter"),
33
    ("next_position","Tab"),
33
    ("next_position","Tab"),
34
    ("prev_position","Shift-Tab");
34
    ("prev_position","Shift-Tab"),
35
    ("toggle_keyboard", "Shift-Ctrl-K");
35
- 

Return to bug 17178