Skip to content

Commit

Permalink
Fixed Shift-F10 behaviour
Browse files Browse the repository at this point in the history
Preserving shift is essential for many applications
https://bugs.freedesktop.org/show_bug.cgi?id=45008
  • Loading branch information
Sergey V. Udaltsov committed Sep 2, 2012
1 parent da8c535 commit a4f6244
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions types/pc
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,19 @@ partial default xkb_types "default" {
};

type "CTRL+ALT" {
modifiers = Control+Alt+Shift+LevelThree;
modifiers = Control+Alt+Shift+LevelThree;
map[None] = Level1;
map[Shift] = Level2;
map[LevelThree] = Level3;
map[Shift+LevelThree] = Level4;
map[Control+Alt] = Level5;
map[Control+Alt] = Level5;
preserve[Shift] = Shift;
preserve[Shift+LevelThree] = Shift;
level_name[Level1] = "Base";
level_name[Level2] = "Shift";
level_name[Level3] = "Alt Base";
level_name[Level4] = "Shift Alt";
level_name[Level5] = "Ctrl+Alt";
level_name[Level5] = "Ctrl+Alt";
};

// Local eight level
Expand Down

0 comments on commit a4f6244

Please sign in to comment.