FileManager: Make the tree view follow the directory view navigations.

This commit is contained in:
Andreas Kling 2019-03-30 03:27:25 +01:00
commit 2c6a597d77
Notes: sideshowbarker 2024-07-19 14:53:45 +09:00
10 changed files with 72 additions and 3 deletions

View file

@ -14,10 +14,9 @@ public:
GModel* model() { return m_model.ptr(); }
const GModel* model() const { return m_model.ptr(); }
void scroll_into_view(const GModelIndex&, Orientation);
virtual bool accepts_focus() const override { return true; }
virtual void did_update_model();
virtual void did_update_selection();
Function<void(const GModelNotification&)> on_model_notification;