diff options
Diffstat (limited to 'Userland/Libraries/LibGUI/Application.h')
-rw-r--r-- | Userland/Libraries/LibGUI/Application.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibGUI/Application.h b/Userland/Libraries/LibGUI/Application.h index 09a073a20c..7ce9379e78 100644 --- a/Userland/Libraries/LibGUI/Application.h +++ b/Userland/Libraries/LibGUI/Application.h @@ -54,6 +54,7 @@ public: void set_system_palette(Core::AnonymousBuffer&); bool focus_debugging_enabled() const { return m_focus_debugging_enabled; } + bool hover_debugging_enabled() const { return m_hover_debugging_enabled; } bool dnd_debugging_enabled() const { return m_dnd_debugging_enabled; } Core::EventLoop& event_loop() { return *m_event_loop; } @@ -102,6 +103,7 @@ private: WeakPtr<Window> m_active_window; bool m_quit_when_last_window_deleted { true }; bool m_focus_debugging_enabled { false }; + bool m_hover_debugging_enabled { false }; bool m_dnd_debugging_enabled { false }; String m_invoked_as; Vector<String> m_args; |