diff options
author | Petr Mrázek <peterix@gmail.com> | 2016-12-19 00:34:03 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2016-12-19 00:35:57 +0100 |
commit | 92bb0017878c11cc09376fae12279d401db707e3 (patch) | |
tree | 81bccda75d912c386159ae551fa500488b968721 /application/groupview/GroupView.h | |
parent | 03d2858c62764230a52a242e7adf45f73f20878e (diff) | |
download | PrismLauncher-92bb0017878c11cc09376fae12279d401db707e3.tar.gz PrismLauncher-92bb0017878c11cc09376fae12279d401db707e3.tar.bz2 PrismLauncher-92bb0017878c11cc09376fae12279d401db707e3.zip |
NOISSUE fix crash caused by missing instance view layout updates
Layout wasn't updated in some cases while deleting instances.
Diffstat (limited to 'application/groupview/GroupView.h')
-rw-r--r-- | application/groupview/GroupView.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/application/groupview/GroupView.h b/application/groupview/GroupView.h index a3863b6d..e0ff1cd9 100644 --- a/application/groupview/GroupView.h +++ b/application/groupview/GroupView.h @@ -60,6 +60,7 @@ protected slots: virtual void rowsInserted(const QModelIndex &parent, int start, int end) override; virtual void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end) override; void modelReset(); + void rowsRemoved(); protected: virtual bool isIndexHidden(const QModelIndex &index) const override; |