Merge pull request #9463 from zfox23/PAL_FixScrollingVisibility

PAL: Fix card visibility when selecting out-of-table users
This commit is contained in:
Zach Fox 2017-01-20 14:01:04 -08:00 committed by GitHub
commit d535d816f4

View file

@ -426,7 +426,7 @@ Rectangle {
if (selected) {
table.selection.clear(); // for now, no multi-select
table.selection.select(userIndex);
table.positionViewAtRow(userIndex, ListView.Visible);
table.positionViewAtRow(userIndex, ListView.Beginning);
} else {
table.selection.deselect(userIndex);
}