diff options
author | dankan1890 <mewuidev2@gmail.com> | 2020-01-20 20:58:42 +0100 |
---|---|---|
committer | dankan1890 <mewuidev2@gmail.com> | 2020-01-20 20:58:42 +0100 |
commit | a2170dcd4090ba0e861ccc2c492c6734b2d56ad7 (patch) | |
tree | b8d906d28eadf55d18c41c41d2b7489facacaa9f | |
parent | 90a224c6eb202c1e6d87bded6adf50d7e40f08fc (diff) |
TextureRegionEditor: Corrected typo
-rw-r--r-- | editor/plugins/texture_region_editor_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/texture_region_editor_plugin.cpp b/editor/plugins/texture_region_editor_plugin.cpp index f9b1e3b43a..ce6bb4b91a 100644 --- a/editor/plugins/texture_region_editor_plugin.cpp +++ b/editor/plugins/texture_region_editor_plugin.cpp @@ -1010,12 +1010,12 @@ TextureRegionEditor::TextureRegionEditor(EditorNode *p_editor) { zoom_hb->add_child(zoom_out); zoom_reset = memnew(ToolButton); - zoom_out->set_tooltip(TTR("Zoom Reset")); + zoom_reset->set_tooltip(TTR("Zoom Reset")); zoom_reset->connect("pressed", this, "_zoom_reset"); zoom_hb->add_child(zoom_reset); zoom_in = memnew(ToolButton); - zoom_out->set_tooltip(TTR("Zoom In")); + zoom_in->set_tooltip(TTR("Zoom In")); zoom_in->connect("pressed", this, "_zoom_in"); zoom_hb->add_child(zoom_in); |