Help: Make section books open and close when toggled

Much more satisfying!
This commit is contained in:
thankyouverycool 2020-07-07 07:19:30 -04:00 committed by Andreas Kling
commit d86dbfe9e8
Notes: sideshowbarker 2024-07-19 05:02:42 +09:00
6 changed files with 27 additions and 1 deletions

View file

@ -37,4 +37,5 @@ public:
virtual const ManualNode* parent() const = 0;
virtual String name() const = 0;
virtual bool is_page() const { return false; }
virtual bool is_open() const { return false; }
};