mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
[Case 6107] Fixes Tablet import sorting (details below).
This ports the fix from FileDialog to TabletFileDialog.
* There appears to be 2 versions of this file:
* qml/dialogs/TabletFileDialog.qml
* qml/hifi/tablet/tabletWindows/TabletFileDialog.qml
Testing the tablet within desktop mode works without this fix most
likely because it uses qml/hifi/tablet/tabletWindows/TabletFileDialog.qml
which didn't receive the same refactor pass via d3282a4e
.
Tested on Vive: Menu -> Edit -> Import Entities
Changes Committed:
modified: interface/resources/qml/dialogs/TabletFileDialog.qml
This commit is contained in:
parent
33c8e90e34
commit
24b6cd71fc
1 changed files with 3 additions and 3 deletions
|
@ -484,9 +484,9 @@ TabletModalWindow {
|
|||
model: filesModel
|
||||
|
||||
function updateSort() {
|
||||
model.sortOrder = sortIndicatorOrder;
|
||||
model.sortColumn = sortIndicatorColumn;
|
||||
model.update();
|
||||
fileTableModel.sortOrder = sortIndicatorOrder;
|
||||
fileTableModel.sortColumn = sortIndicatorColumn;
|
||||
fileTableModel.update();
|
||||
}
|
||||
|
||||
onSortIndicatorColumnChanged: { updateSort(); }
|
||||
|
|
Loading…
Reference in a new issue