Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preferences window #24

Closed
3 of 4 tasks
pascalpp opened this issue May 4, 2019 · 3 comments · Fixed by #34
Closed
3 of 4 tasks

Preferences window #24

pascalpp opened this issue May 4, 2019 · 3 comments · Fixed by #34
Milestone

Comments

@pascalpp
Copy link
Owner

pascalpp commented May 4, 2019

After implementing UserDefaults #16

  • ruler color
  • active transparency
  • inactive transparency
  • float above other windows
@pascalpp pascalpp added this to the 2.0 release milestone May 4, 2019
@pascalpp
Copy link
Owner Author

pascalpp commented May 6, 2019

@pascalpp
Copy link
Owner Author

pascalpp commented May 8, 2019

Interesting extension of UserDefaults to https://gist.github.com/shaps80/eb0016303dcfceb3152285d4ea0c6691

@pascalpp
Copy link
Owner Author

pascalpp commented May 8, 2019

Oh heh TIL about UserDefaults.standard.register(dictionary):
image

let prefs = UserDefaults.standard

let defaults: [String: Any] = [
    "running": true,
    "jumping": false,
    "float": Float(0.9),
]

prefs.register(defaults: defaults)

prefs.bool(forKey: "running") // true
prefs.bool(forKey: "jumping") // false
prefs.float(forKey: "float")  // 0.9

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant