diff options
author | passivestar <60579014+passivestar@users.noreply.github.com> | 2024-10-07 15:49:33 +0400 |
---|---|---|
committer | passivestar <60579014+passivestar@users.noreply.github.com> | 2024-10-07 15:49:33 +0400 |
commit | 3345f90bf39459a197334e5e066c4d96849e3d5f (patch) | |
tree | 608c67f91840c46b5aeb7888d111d6b6f74ea70b /editor | |
parent | db66bd35af704fe0d83ba9348b8c50a48e51b2ba (diff) | |
download | redot-engine-3345f90bf39459a197334e5e066c4d96849e3d5f.tar.gz |
Fix plugin creation dialog script name tooltip
Diffstat (limited to 'editor')
-rw-r--r-- | editor/plugins/plugin_config_dialog.cpp | 2 |
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); |