1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 22:08:10 +00:00

LibGUI: Fix GTreeView not showing the context menu

This logic is all taken care of by GAbstractColumnView now, so we can
simply delete GTreeView::context_menu_event(). :^)

Fixes an issue mentioned in #826
This commit is contained in:
Andreas Kling 2019-12-15 17:02:02 +01:00
parent 05a441afb2
commit d4a570d576
2 changed files with 0 additions and 14 deletions

View file

@ -19,7 +19,6 @@ protected:
virtual void keydown_event(GKeyEvent&) override;
virtual void did_update_selection() override;
virtual void did_update_model() override;
virtual void context_menu_event(GContextMenuEvent&) override;
private:
virtual GModelIndex index_at_event_position(const Point&, bool& is_toggle) const override;