Skip to content

Commit

Permalink
Merge pull request #199 from ijaureguialzo/master
Browse files Browse the repository at this point in the history
Fix: Remove semicolons preference not saved
  • Loading branch information
saagarjha authored Jan 9, 2019
2 parents fdab3e5 + dc7c63c commit c1829f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Parser/Preferences.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class Preferences: Codable {
}

static func setBool(key: String, value: Bool) {
sharedUserDefaults.set(value, forKey: Preferences.parameterAlignment)
sharedUserDefaults.set(value, forKey: key)
sharedUserDefaults.synchronize()
}

Expand Down

0 comments on commit c1829f6

Please sign in to comment.