Selaa lähdekoodia

Force drawing guides in single-row Tree items in the editor

Michael Alexsander Silva Dias 6 vuotta sitten
vanhempi
commit
bd278fdd65
2 muutettua tiedostoa jossa 14 lisäystä ja 6 poistoa
  1. 2 0
      editor/create_dialog.cpp
  2. 12 6
      editor/quick_open.cpp

+ 2 - 0
editor/create_dialog.cpp

@@ -721,6 +721,7 @@ CreateDialog::CreateDialog() {
 	favorites->connect("cell_selected", this, "_favorite_selected");
 	favorites->connect("cell_selected", this, "_favorite_selected");
 	favorites->connect("item_activated", this, "_favorite_activated");
 	favorites->connect("item_activated", this, "_favorite_activated");
 	favorites->set_drag_forwarding(this);
 	favorites->set_drag_forwarding(this);
+	favorites->add_constant_override("draw_guides", 1);
 
 
 	VBoxContainer *rec_vb = memnew(VBoxContainer);
 	VBoxContainer *rec_vb = memnew(VBoxContainer);
 	vsc->add_child(rec_vb);
 	vsc->add_child(rec_vb);
@@ -733,6 +734,7 @@ CreateDialog::CreateDialog() {
 	recent->set_hide_folding(true);
 	recent->set_hide_folding(true);
 	recent->connect("cell_selected", this, "_history_selected");
 	recent->connect("cell_selected", this, "_history_selected");
 	recent->connect("item_activated", this, "_history_activated");
 	recent->connect("item_activated", this, "_history_activated");
+	recent->add_constant_override("draw_guides", 1);
 
 
 	VBoxContainer *vbc = memnew(VBoxContainer);
 	VBoxContainer *vbc = memnew(VBoxContainer);
 	hsc->add_child(vbc);
 	hsc->add_child(vbc);

+ 12 - 6
editor/quick_open.cpp

@@ -255,14 +255,19 @@ void EditorQuickOpen::_confirmed() {
 
 
 void EditorQuickOpen::_notification(int p_what) {
 void EditorQuickOpen::_notification(int p_what) {
 
 
-	if (p_what == NOTIFICATION_ENTER_TREE) {
+	switch (p_what) {
 
 
-		connect("confirmed", this, "_confirmed");
+		case NOTIFICATION_ENTER_TREE: {
 
 
-		search_box->set_right_icon(get_icon("Search", "EditorIcons"));
-		search_box->set_clear_button_enabled(true);
-	} else if (p_what == NOTIFICATION_EXIT_TREE) {
-		disconnect("confirmed", this, "_confirmed");
+			connect("confirmed", this, "_confirmed");
+
+			search_box->set_right_icon(get_icon("Search", "EditorIcons"));
+			search_box->set_clear_button_enabled(true);
+		} break;
+		case NOTIFICATION_EXIT_TREE: {
+
+			disconnect("confirmed", this, "_confirmed");
+		} break;
 	}
 	}
 }
 }
 
 
@@ -297,6 +302,7 @@ EditorQuickOpen::EditorQuickOpen() {
 	set_hide_on_ok(false);
 	set_hide_on_ok(false);
 	search_options->connect("item_activated", this, "_confirmed");
 	search_options->connect("item_activated", this, "_confirmed");
 	search_options->set_hide_root(true);
 	search_options->set_hide_root(true);
+	search_options->add_constant_override("draw_guides", 1);
 	ei = "EditorIcons";
 	ei = "EditorIcons";
 	ot = "Object";
 	ot = "Object";
 	add_directories = false;
 	add_directories = false;