summaryrefslogtreecommitdiff
path: root/tools/editor
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2016-01-25 10:59:27 +0100
committerRémi Verschelde <remi@verschelde.fr>2016-01-25 10:59:27 +0100
commit6eb616087de939104a9c988856edb4450777c339 (patch)
treecc857b6edf311ae78a9e93b6600f6d2aeaf8df23 /tools/editor
parentf2e5b0f5fbfe09bdc3e90abb1d55fa50b364f754 (diff)
parentd0de508ff34fd53284507c49e4e129aee57e2297 (diff)
Merge pull request #3432 from TheHX/pr-groups-editor
Groups Editor: Clear LineEdit after creating a new group
Diffstat (limited to 'tools/editor')
-rw-r--r--tools/editor/groups_editor.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/editor/groups_editor.cpp b/tools/editor/groups_editor.cpp
index 6840a8b205..4b1096148a 100644
--- a/tools/editor/groups_editor.cpp
+++ b/tools/editor/groups_editor.cpp
@@ -51,6 +51,8 @@ void GroupsEditor::_add_group(const String& p_group) {
undo_redo->add_undo_method(this,"update_tree");
undo_redo->commit_action();
+
+ group_name->clear();
}
void GroupsEditor::_remove_group(Object *p_item, int p_column, int p_id) {