jaehyun pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=b9b9287454bf8f17fa53611625529d4498b06faf
commit b9b9287454bf8f17fa53611625529d4498b06faf Author: SangHyeon Jade Lee <[email protected]> Date: Mon Dec 23 16:21:10 2019 +0900 eolian_mono : add verb unselect on naming helper. Summary: currently select is verb and mono name is exposed SelectAll but unselect is non-verb and mono name is exposed AllUnselect. to fix this differencies, add unselect in the verb list. Reviewers: segfaultxavi, Jaehyun_Cho Reviewed By: Jaehyun_Cho Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D10952 --- src/bin/eolian_mono/eolian/mono/name_helpers.hh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/eolian_mono/eolian/mono/name_helpers.hh b/src/bin/eolian_mono/eolian/mono/name_helpers.hh index 867b832444..7f71d9279b 100644 --- a/src/bin/eolian_mono/eolian/mono/name_helpers.hh +++ b/src/bin/eolian_mono/eolian/mono/name_helpers.hh @@ -174,7 +174,8 @@ static const std::vector<std::string> verbs = "sync", "toggle", "unbind", - "unregister" + "unregister", + "unselect" }; const std::vector<std::string> not_verbs = --
