-
Notifications
You must be signed in to change notification settings - Fork 227
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
Adds simply fullscreen mode #126
Conversation
quardbreak
commented
Mar 13, 2020
/datum/client_preference/fullscreen_mode | ||
description = "Toggle Fullscreen Mode" | ||
key = "TOGGLE_FULLSCREEN" | ||
options = list(GLOB.PREF_NO, GLOB.PREF_YES) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any particular reason for switching Yes/No around? It makes it inconsistent with other settings using the same options.
Should instead be able to instead do default_value = GLOB.PREF_NO
/datum/client_preference/fullscreen_mode | ||
description = "Fullscreen Mode" | ||
key = "FULLSCREEN" | ||
options = list(GLOB.PREF_YES, GLOB.PREF_NO) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the same as the default options
value
0078c98
to
a4c68e9
Compare
fix format