diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-01 22:03:32 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-01 22:03:32 +0200 |
commit | c9b0d879276247303a3c285cdb9dfbcabcb3394d (patch) | |
tree | 5a64ff7199294696398213f07d33f9d34d52bd67 /LibGUI/GWidget.h | |
parent | ee4d7c18c8a1a2d4b43261c751c238f35c90a232 (diff) | |
download | serenity-c9b0d879276247303a3c285cdb9dfbcabcb3394d.zip |
LibGUI: Fix broken doubleclick detection due to uninitialized GElapsedTimer.
Diffstat (limited to 'LibGUI/GWidget.h')
-rw-r--r-- | LibGUI/GWidget.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/LibGUI/GWidget.h b/LibGUI/GWidget.h index a8bf7b2ff9..99b16857a4 100644 --- a/LibGUI/GWidget.h +++ b/LibGUI/GWidget.h @@ -147,6 +147,7 @@ private: void handle_paint_event(GPaintEvent&); void handle_resize_event(GResizeEvent&); + void handle_mousedown_event(GMouseEvent&); void handle_mouseup_event(GMouseEvent&); void do_layout(); |