You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-10 13:00:37 +00:00
Improve behaviour of AnimationPlayer warnings.
This commit is contained in:
@@ -5200,7 +5200,8 @@ void EditorNode::show_accept(const String &p_text, const String &p_title) {
|
||||
_close_save_scene_progress();
|
||||
accept->set_ok_button_text(p_title);
|
||||
accept->set_text(p_text);
|
||||
EditorInterface::get_singleton()->popup_dialog_centered(accept);
|
||||
accept->reset_size();
|
||||
EditorInterface::get_singleton()->popup_dialog_centered_clamped(accept, Size2i(), 0.0);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5210,7 +5211,8 @@ void EditorNode::show_save_accept(const String &p_text, const String &p_title) {
|
||||
_close_save_scene_progress();
|
||||
save_accept->set_ok_button_text(p_title);
|
||||
save_accept->set_text(p_text);
|
||||
EditorInterface::get_singleton()->popup_dialog_centered(save_accept);
|
||||
save_accept->reset_size();
|
||||
EditorInterface::get_singleton()->popup_dialog_centered_clamped(save_accept, Size2i(), 0.0);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5219,7 +5221,8 @@ void EditorNode::show_warning(const String &p_text, const String &p_title) {
|
||||
_close_save_scene_progress();
|
||||
warning->set_text(p_text);
|
||||
warning->set_title(p_title);
|
||||
EditorInterface::get_singleton()->popup_dialog_centered(warning);
|
||||
warning->reset_size();
|
||||
EditorInterface::get_singleton()->popup_dialog_centered_clamped(warning, Size2i(), 0.0);
|
||||
} else {
|
||||
WARN_PRINT(p_title + " " + p_text);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user