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

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
parent 5387a19268
commit dcc4704fb5
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;
};