diff options
| author | Hugo Locurcio | 2018-04-22 19:36:01 +0200 |
|---|---|---|
| committer | Max Hilbrunner | 2018-04-22 19:36:01 +0200 |
| commit | 1c419531a009f48aa074f9b5f93b98d387c33723 (patch) | |
| tree | 6beff4f51161e61e22b70266b5e0385496e35b6b /editor/connections_dialog.cpp | |
| parent | ca25f1e6eae9ffd498ddba05f94e341827269fea (diff) | |
| download | godot-1c419531a009f48aa074f9b5f93b98d387c33723.tar.gz godot-1c419531a009f48aa074f9b5f93b98d387c33723.tar.zst godot-1c419531a009f48aa074f9b5f93b98d387c33723.zip | |
Diffstat (limited to 'editor/connections_dialog.cpp')
| -rw-r--r-- | editor/connections_dialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/connections_dialog.cpp b/editor/connections_dialog.cpp index 3466d1798..ef133e258 100644 --- a/editor/connections_dialog.cpp +++ b/editor/connections_dialog.cpp @@ -319,7 +319,7 @@ ConnectDialog::ConnectDialog() { dstm_hb->add_child(dst_method); /*dst_method_list = memnew( MenuButton ); - dst_method_list->set_text("List.."); + dst_method_list->set_text("List..."); dst_method_list->set_anchor( MARGIN_RIGHT, ANCHOR_END ); dst_method_list->set_anchor( MARGIN_LEFT, ANCHOR_END ); dst_method_list->set_anchor( MARGIN_TOP, ANCHOR_END ); @@ -621,12 +621,12 @@ void ConnectionsDock::_something_selected() { TreeItem *item = tree->get_selected(); if (!item) { //no idea how this happened, but disable - connect_button->set_text(TTR("Connect..")); + connect_button->set_text(TTR("Connect...")); connect_button->set_disabled(true); } else if (item->get_parent() == tree->get_root() || item->get_parent()->get_parent() == tree->get_root()) { //a signal - connect - connect_button->set_text(TTR("Connect..")); + connect_button->set_text(TTR("Connect...")); connect_button->set_disabled(false); } else { |
