mirror of
https://github.com/yattee/yattee.git
synced 2024-12-23 05:53:41 +00:00
Change default value for showing account username
This commit is contained in:
parent
868883dc45
commit
a235267796
@ -26,7 +26,12 @@ extension Defaults.Keys {
|
|||||||
])
|
])
|
||||||
|
|
||||||
#if !os(tvOS)
|
#if !os(tvOS)
|
||||||
static let accountPickerDisplaysUsername = Key<Bool>("accountPickerDisplaysUsername", default: false)
|
#if os(macOS)
|
||||||
|
static let accountPickerDisplaysUsernameDefault = true
|
||||||
|
#else
|
||||||
|
static let accountPickerDisplaysUsernameDefault = UIDevice.current.userInterfaceIdiom == .pad
|
||||||
|
#endif
|
||||||
|
static let accountPickerDisplaysUsername = Key<Bool>("accountPickerDisplaysUsername", default: accountPickerDisplaysUsernameDefault)
|
||||||
#endif
|
#endif
|
||||||
#if os(iOS)
|
#if os(iOS)
|
||||||
static let lockPortraitWhenBrowsing = Key<Bool>("lockPortraitWhenBrowsing", default: UIDevice.current.userInterfaceIdiom == .phone)
|
static let lockPortraitWhenBrowsing = Key<Bool>("lockPortraitWhenBrowsing", default: UIDevice.current.userInterfaceIdiom == .phone)
|
||||||
|
Loading…
Reference in New Issue
Block a user