summaryrefslogtreecommitdiffstats
path: root/editor
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-11-27 10:46:51 -0600
committerThaddeus Crews <repiteo@outlook.com>2024-11-27 10:46:51 -0600
commitea61c3e06694c7f082e8cfe66fbe635c1183abb6 (patch)
tree39a858d84284a4e66e00000ffdeb2e2b169c68d9 /editor
parent4e079ee733efbb932df999c2e07a4cd09ab5349f (diff)
parent3345f90bf39459a197334e5e066c4d96849e3d5f (diff)
downloadredot-engine-ea61c3e06694c7f082e8cfe66fbe635c1183abb6.tar.gz
Merge pull request #97924 from passivestar/plugin-tooltip
Fix plugin creation dialog script name tooltip
Diffstat (limited to 'editor')
-rw-r--r--editor/plugins/plugin_config_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/plugin_config_dialog.cpp b/editor/plugins/plugin_config_dialog.cpp
index af9efda939..c3e87c508e 100644
--- a/editor/plugins/plugin_config_dialog.cpp
+++ b/editor/plugins/plugin_config_dialog.cpp
@@ -305,7 +305,7 @@ PluginConfigDialog::PluginConfigDialog() {
grid->add_child(script_name_label);
script_edit = memnew(LineEdit);
- script_edit->set_tooltip_text(TTR("Optional. The path to the script (relative to the add-on folder). If left empty, will default to \"plugin.gd\"."));
+ script_edit->set_tooltip_text(TTR("Optional. The name of the script file. If left empty, will default to the subfolder name."));
script_edit->set_placeholder("\"plugin.gd\" -> res://addons/my_plugin/plugin.gd");
script_edit->set_h_size_flags(Control::SIZE_EXPAND_FILL);
grid->add_child(script_edit);