You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
fix CollisionShape3D Shape Size handle will missing
when Script editor floating
This commit is contained in:
@@ -1791,6 +1791,10 @@ void ScriptEditor::ensure_select_current() {
|
||||
_update_selected_editor_menu();
|
||||
}
|
||||
|
||||
bool ScriptEditor::is_editor_floating() {
|
||||
return is_floating;
|
||||
}
|
||||
|
||||
void ScriptEditor::_find_scripts(Node *p_base, Node *p_current, HashSet<Ref<Script>> &used) {
|
||||
if (p_current != p_base && p_current->get_owner() != p_base) {
|
||||
return;
|
||||
@@ -3747,6 +3751,7 @@ void ScriptEditor::_on_find_in_files_modified_files(PackedStringArray paths) {
|
||||
|
||||
void ScriptEditor::_window_changed(bool p_visible) {
|
||||
make_floating->set_visible(!p_visible);
|
||||
is_floating = p_visible;
|
||||
}
|
||||
|
||||
void ScriptEditor::_filter_scripts_text_changed(const String &p_newtext) {
|
||||
|
||||
Reference in New Issue
Block a user