From 210536838977dca651d536c24d5a71fcb7fde50b Mon Sep 17 00:00:00 2001 From: henrikth93 Date: Fri, 22 Sep 2023 19:55:54 +0200 Subject: [PATCH] Uncommented a line that removes the numbers row --- Keyboards/KeyboardsBase/KeyboardViewController.swift | 2 +- Keyboards/LanguageKeyboards/Swedish/SVInterfaceVariables.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Keyboards/KeyboardsBase/KeyboardViewController.swift b/Keyboards/KeyboardsBase/KeyboardViewController.swift index 90be48e3..eba25a8c 100644 --- a/Keyboards/KeyboardsBase/KeyboardViewController.swift +++ b/Keyboards/KeyboardsBase/KeyboardViewController.swift @@ -17,7 +17,7 @@ class KeyboardViewController: UIInputViewController { @IBOutlet var stackView1: UIStackView! @IBOutlet var stackView2: UIStackView! @IBOutlet var stackView3: UIStackView! - @IBOutlet var stackView4: UIStackView! //Used for expanded keyboard + private var tipView: ToolTipView? diff --git a/Keyboards/LanguageKeyboards/Swedish/SVInterfaceVariables.swift b/Keyboards/LanguageKeyboards/Swedish/SVInterfaceVariables.swift index 41f98389..9bdd6fa5 100644 --- a/Keyboards/LanguageKeyboards/Swedish/SVInterfaceVariables.swift +++ b/Keyboards/LanguageKeyboards/Swedish/SVInterfaceVariables.swift @@ -111,7 +111,7 @@ func getSVKeys() { } // If the iPad is too small to have a numbers row. - //letterKeys.removeFirst(1) + letterKeys.removeFirst(1) letterKeys[0].append("delete") allKeys = Array(letterKeys.joined()) + Array(numberKeys.joined()) + Array(symbolKeys.joined())