~michael-sheldon/ubuntu-keyboard/layout-improvements

« back to all changes in this revision

Viewing changes to plugins/is/qml/Keyboard_is_url_search.qml

  • Committer: Michael Sheldon
  • Date: 2015-05-12 11:35:44 UTC
  • Revision ID: michael.sheldon@canonical.com-20150512113544-2hq80cj704kifyjc
Fix extended keys in Icelandic layout

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
 
85
85
            SymbolShiftKey { id: symShiftKey; anchors.left: parent.left; height: parent.height; }
86
86
            LanguageKey    { id: languageMenuButton; anchors.left: symShiftKey.right; height: parent.height; }
87
 
            CharKey        { id: slashKey; label: "/"; shifted: "/"; extended: ["_"]; extendedShifted: ["_"]; anchors.left: languageMenuButton.right; height: parent.height; }
 
87
            CharKey        { id: slashKey; label: "/"; shifted: "/"; anchors.left: languageMenuButton.right; height: parent.height; }
88
88
            SpaceKey       { id: spaceKey;                               anchors.left: slashKey.right; anchors.right: urlKey.left; noMagnifier: true; height: parent.height; }
89
89
            UrlKey         { id: urlKey; label: ".is"; extended: [".com", ".org", ".net"]; anchors.right: dotKey.left; height: parent.height; }
90
 
            CharKey        { id: dotKey; label: "."; shifted: "."; extended: ["?", "#"]; extendedShifted: ["?", "#"]; anchors.right: enterKey.left; height: parent.height; }
 
90
            CharKey        { id: dotKey;      label: "."; shifted: "."; extended: ["?", "-", "_", "!", "+", "%","#","/"]; extendedShifted: ["?", "-", "_", "!", "+", "%","#","/"]; anchors.right: enterKey.left; height: parent.height; }
91
91
            ReturnKey      { id: enterKey; anchors.right: parent.right; height: parent.height; }
92
92
        }
93
93