← Back to team overview

ubuntu-touch-coreapps-reviewers team mailing list archive

[Merge] lp:~mcintire-evan/ubuntu-terminal-app/fix-function-keys into lp:ubuntu-terminal-app

 

Evan McIntire has proposed merging lp:~mcintire-evan/ubuntu-terminal-app/fix-function-keys into lp:ubuntu-terminal-app.

Requested reviews:
  Ubuntu Terminal Developers (ubuntu-terminal-dev)

For more details, see:
https://code.launchpad.net/~mcintire-evan/ubuntu-terminal-app/fix-function-keys/+merge/281461

F10 is listed twice in FunctionKeys.json, and F12 is not listed at all. This corrects that
-- 
Your team Ubuntu Terminal Developers is requested to review the proposed merge of lp:~mcintire-evan/ubuntu-terminal-app/fix-function-keys into lp:ubuntu-terminal-app.
=== modified file 'src/app/qml/KeyboardRows/Layouts/FunctionKeys.json'
--- src/app/qml/KeyboardRows/Layouts/FunctionKeys.json	2015-07-10 14:34:00 +0000
+++ src/app/qml/KeyboardRows/Layouts/FunctionKeys.json	2016-01-02 06:29:24 +0000
@@ -72,14 +72,14 @@
         {
             "main_action" : {
                 "type": "key",
-                "key" : "F10"
-            }
-        },
-        {
-            "main_action" : {
-                "type": "key",
                 "key" : "F11"
             }
+        },
+        {
+            "main_action" : {
+                "type": "key",
+                "key" : "F12"
+            }
         }
     ]
 }


Follow ups