Skip to content

Commit efb84c1

Browse files
committed
2 parents d1dc9f4 + 729be6f commit efb84c1

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

Keyboards/KeyboardsBase/InterfaceVariables.swift

+1
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ let languagesAbbrDict = [
125125
"Swedish": "sv",
126126
]
127127

128+
128129
/// Returns the abbreviation of the language for use in commands.
129130
func getControllerLanguageAbbr() -> String {
130131
guard let abbreviation = languagesAbbrDict[controllerLanguage] else {

Scribe/Components/TableViewTemplateViewController.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import UIKit
77
class TableViewTemplateViewController: UIViewController {
88
@IBOutlet var mainTable: UITableView!
99

10-
var screenTitle: String = ""
10+
var screenTitle: String = ""
1111
var tableData: [ParentTableCellModel] = []
1212
var parentSection: Section?
1313

Scribe/SettingsTab/SettingsTableData.swift

+6-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ struct SettingsTableData {
2121
hasDynamicData: .installedKeyboards
2222
),
2323
]
24-
24+
2525
static var languageSettingsData: [ParentTableCellModel] = [
2626
ParentTableCellModel(
2727
headingTitle: "Layout",
@@ -32,12 +32,12 @@ struct SettingsTableData {
3232
hasToggle: true,
3333
sectionState: .none(.toggleCommaAndPeriod)
3434
),
35-
Section(
35+
Section(
3636
sectionTitle: "Disable accent characters",
3737
imageString: "info.circle",
3838
hasToggle: true,
3939
sectionState: .none(.toggleAccentCharacters)
40-
),
40+
)
4141
],
4242
hasDynamicData: nil
4343
),
@@ -54,7 +54,7 @@ struct SettingsTableData {
5454
hasDynamicData: nil
5555
)
5656
]
57-
57+
5858
static func getInstalledKeyboardsSections() -> [Section] {
5959
var installedKeyboards = [String]()
6060

@@ -86,3 +86,5 @@ struct SettingsTableData {
8686
return sections
8787
}
8888
}
89+
90+

0 commit comments

Comments
 (0)