-
-
Notifications
You must be signed in to change notification settings - Fork 21.4k
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
Show update spinner by default in dev_build=yes
editor builds
#88106
Show update spinner by default in dev_build=yes
editor builds
#88106
Conversation
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.
Sounds like a good idea to me.
@@ -6476,7 +6486,6 @@ EditorNode::EditorNode() { | |||
register_exporters(); | |||
|
|||
EDITOR_DEF("interface/editor/save_on_focus_loss", false); | |||
EDITOR_DEF("interface/editor/show_update_spinner", false); |
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.
Moving this to editor_settings.cpp
seems to have added it properly to the docs.
So it seems all these properties may be missing from the docs and should be moved too (in a separate PR).
206ede0
to
532e73c
Compare
532e73c
to
dafbde4
Compare
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 was my suggestion so yeah of course I do agree
This ensures contributors can see when something forces the editor to redraw constantly. The existing boolean `true` value will be casted to `1` in the setting, so it'll switch to Enabled automatically if the setting was previously enabled.
dafbde4
to
7e25292
Compare
Thanks! |
This ensures contributors can see when something forces the editor to redraw constantly.
The existing boolean
true
value will be casted to1
in the setting, so it'll switch to Enabled automatically if the setting was previously enabled. If the setting is disabled, it'll default to Auto (enabled on dev builds, disabled otherwise).