diff options
author | crupest <crupest@outlook.com> | 2018-11-28 19:25:35 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2018-11-28 19:25:35 +0800 |
commit | b4571d0ddad966efcc6e305f5d7e79cd593a2b25 (patch) | |
tree | def0c4ee3c3d63bd6070f4b781094518e7e98922 /src/ui/controls/text_control.cpp | |
parent | 4c926755a112f5e7da5da82035fa2f624ceef863 (diff) | |
download | cru-b4571d0ddad966efcc6e305f5d7e79cd593a2b25.tar.gz cru-b4571d0ddad966efcc6e305f5d7e79cd593a2b25.tar.bz2 cru-b4571d0ddad966efcc6e305f5d7e79cd593a2b25.zip |
Change some routed events handlers in subcontrols.
Diffstat (limited to 'src/ui/controls/text_control.cpp')
-rw-r--r-- | src/ui/controls/text_control.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/controls/text_control.cpp b/src/ui/controls/text_control.cpp index 71a167e2..f32c068f 100644 --- a/src/ui/controls/text_control.cpp +++ b/src/ui/controls/text_control.cpp @@ -110,7 +110,7 @@ namespace cru::ui::controls } }); - lose_focus_event.bubble.AddHandler([this](events::FocusChangeEventArgs& args) + lose_focus_event.direct.AddHandler([this](events::FocusChangeEventArgs& args) { if (is_selecting_) { |