mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 17:24:24 +02:00
Merge pull request #14109 from zfox23/purchasesNoSnap
Fix MS18154: Don't snap to cards in My Purchases
This commit is contained in:
commit
3210a4ec39
1 changed files with 1 additions and 1 deletions
|
@ -586,7 +586,7 @@ Rectangle {
|
||||||
visible: purchasesModel.count !== 0;
|
visible: purchasesModel.count !== 0;
|
||||||
clip: true;
|
clip: true;
|
||||||
model: purchasesModel;
|
model: purchasesModel;
|
||||||
snapMode: ListView.SnapToItem;
|
snapMode: ListView.NoSnap;
|
||||||
// Anchors
|
// Anchors
|
||||||
anchors.top: separator.bottom;
|
anchors.top: separator.bottom;
|
||||||
anchors.left: parent.left;
|
anchors.left: parent.left;
|
||||||
|
|
Loading…
Reference in a new issue