diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-05-28 09:29:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-28 09:29:51 +0200 |
commit | 8125bbba5986008bd528b1680d1983e6abb69f3e (patch) | |
tree | bc8157c8ddb3814f0bef889f794dbaf67a1ee84b | |
parent | ba5098a123da1a9eae52ad4628587e159da0a251 (diff) | |
parent | db64fcdd5fac6b8595c466f8833c8a8b02561ce6 (diff) |
Merge pull request #8968 from noshyaar/pr-bug2
CreateDialog: fix activating recent item creates node selected in search result
-rw-r--r-- | editor/create_dialog.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/create_dialog.cpp b/editor/create_dialog.cpp index 641993bf05..1089068344 100644 --- a/editor/create_dialog.cpp +++ b/editor/create_dialog.cpp @@ -489,11 +489,13 @@ void CreateDialog::_favorite_selected() { void CreateDialog::_history_activated() { + _history_selected(); _confirmed(); } void CreateDialog::_favorite_activated() { + _favorite_selected(); _confirmed(); } |