diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2016-02-06 01:56:59 +0100 |
---|---|---|
committer | Rémi Verschelde <remi@verschelde.fr> | 2016-02-06 01:56:59 +0100 |
commit | 9a0e3ae3b718db8f1c0d9bd75c1c1588dc3c79a4 (patch) | |
tree | dc9cf435de919e135322d4ffe850aac042d9c5b0 | |
parent | 28a8a13e4939a3f32ab759436d2799cd6c091121 (diff) | |
parent | 7594e963e083d72e36dc372353d1bea6b999e24d (diff) |
Merge pull request #3602 from neikeq/workaround_78
Temporary disable plugin 'Load..' button
-rw-r--r-- | tools/editor/settings_config_dialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/editor/settings_config_dialog.cpp b/tools/editor/settings_config_dialog.cpp index ebbc488ff2..86a3ab7001 100644 --- a/tools/editor/settings_config_dialog.cpp +++ b/tools/editor/settings_config_dialog.cpp @@ -321,12 +321,12 @@ EditorSettingsDialog::EditorSettingsDialog() { vbc->add_child(hbc); hbc->add_child( memnew( Label("Plugin List: "))); hbc->add_spacer(); - Button *load = memnew( Button ); - load->set_text("Load.."); + //Button *load = memnew( Button ); + //load->set_text("Load.."); + //hbc->add_child(load); Button *rescan = memnew( Button ); rescan_plugins=rescan; rescan_plugins->connect("pressed",this,"_rescan_plugins"); - hbc->add_child(load); hbc->add_child(rescan); plugins = memnew( Tree ); MarginContainer *mc = memnew( MarginContainer); |