1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-13 13:31:48 +00:00

Move export GUI debug toggle to export settings window

This commit is contained in:
eska
2016-04-28 02:39:52 +02:00
parent 8156f4944e
commit ab4caa7953
10 changed files with 65 additions and 21 deletions

View File

@@ -6011,11 +6011,6 @@ EditorNode::EditorNode() {
file_export_check = memnew( CheckButton );
file_export_check->set_text("Enable Debugging");
file_export_check->set_pressed(true);
file_export_check->connect("pressed",this,"_export_debug_toggled");
file_export->get_vbox()->add_margin_child("Debug:",file_export_check);
file_export_password = memnew( LineEdit );
file_export_password->set_secret(true);
file_export_password->set_editable(false);