diff options
author | crupest <crupest@outlook.com> | 2019-03-21 21:42:28 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-03-21 21:42:28 +0800 |
commit | fdbb02b2cbdd4e4069005d0535a343229f7c4d32 (patch) | |
tree | 3cc25c18b3b019f09d6478b8b9f7b4ddbaed9eb6 /src/ui/control.hpp | |
parent | 616ebd78b543876388cb3d64f108abea041d4983 (diff) | |
download | cru-fdbb02b2cbdd4e4069005d0535a343229f7c4d32.tar.gz cru-fdbb02b2cbdd4e4069005d0535a343229f7c4d32.tar.bz2 cru-fdbb02b2cbdd4e4069005d0535a343229f7c4d32.zip |
...
Diffstat (limited to 'src/ui/control.hpp')
-rw-r--r-- | src/ui/control.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/control.hpp b/src/ui/control.hpp index 5f8ac02a..9ff407b0 100644 --- a/src/ui/control.hpp +++ b/src/ui/control.hpp @@ -207,7 +207,7 @@ void DispatchEvent(Control* const original_sender, auto parent = original_sender; while (parent != last_receiver) { receive_list.push_back(parent); - parent = parent->GetInternalParent(); + parent = parent->GetParent(); } auto handled = false; |