mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 12:28:02 +02:00
Merge pull request #9463 from zfox23/PAL_FixScrollingVisibility
PAL: Fix card visibility when selecting out-of-table users
This commit is contained in:
commit
d535d816f4
1 changed files with 1 additions and 1 deletions
|
@ -426,7 +426,7 @@ Rectangle {
|
||||||
if (selected) {
|
if (selected) {
|
||||||
table.selection.clear(); // for now, no multi-select
|
table.selection.clear(); // for now, no multi-select
|
||||||
table.selection.select(userIndex);
|
table.selection.select(userIndex);
|
||||||
table.positionViewAtRow(userIndex, ListView.Visible);
|
table.positionViewAtRow(userIndex, ListView.Beginning);
|
||||||
} else {
|
} else {
|
||||||
table.selection.deselect(userIndex);
|
table.selection.deselect(userIndex);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue