diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-01-20 21:34:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-20 21:34:02 +0100 |
commit | 709665b15d6da56b560823e99db3ee4435dd3086 (patch) | |
tree | edadbeea3034caafc3ad3ae90487d6b68c3749c8 | |
parent | ad8819ca61fd2907a750131f928213992fded54a (diff) | |
parent | a2170dcd4090ba0e861ccc2c492c6734b2d56ad7 (diff) |
Merge pull request #35379 from dankan1890/quick_fix
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); |