mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:37:35 +00:00
HackStudio: Fix the wrong cursor being drawn
This commit is contained in:
parent
0e04e2cff0
commit
792a709765
2 changed files with 18 additions and 2 deletions
|
@ -50,6 +50,8 @@ private:
|
|||
virtual void mousedown_event(GUI::MouseEvent&) override;
|
||||
virtual void keydown_event(GUI::KeyEvent&) override;
|
||||
virtual void keyup_event(GUI::KeyEvent&) override;
|
||||
virtual void enter_event(Core::Event&) override;
|
||||
virtual void leave_event(Core::Event&) override;
|
||||
|
||||
void show_documentation_tooltip_if_available(const String&, const Gfx::Point& screen_location);
|
||||
void navigate_to_include_if_available(String);
|
||||
|
@ -60,6 +62,7 @@ private:
|
|||
RefPtr<Web::HtmlView> m_documentation_html_view;
|
||||
String m_last_parsed_token;
|
||||
GUI::TextPosition m_previous_text_position { 0, 0 };
|
||||
bool m_hovering_editor { false };
|
||||
bool m_hovering_link { false };
|
||||
bool m_holding_ctrl { false };
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue