LibGUI: Preserve existing GItemView selection on rubber band (#1031)

This commit is contained in:
DAlperin 2020-01-07 10:18:12 -05:00 committed by Andreas Kling
commit dcc4704fb5
Notes: sideshowbarker 2024-07-19 10:17:03 +09:00
2 changed files with 14 additions and 1 deletions

View file

@ -55,4 +55,5 @@ private:
bool m_rubber_banding { false };
Point m_rubber_band_origin;
Point m_rubber_band_current;
Vector<GModelIndex> m_rubber_band_remembered_selection;
};