mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 16:36:18 +02:00
Merge pull request #11352 from 1P-Cusack/FogBugz/Case_6107
[QML] Fixes FogBugz Case 6107: Can't sort on import menu (details below).
This commit is contained in:
commit
04b99ef8a5
2 changed files with 6 additions and 6 deletions
|
@ -486,9 +486,9 @@ ModalWindow {
|
||||||
model: filesModel
|
model: filesModel
|
||||||
|
|
||||||
function updateSort() {
|
function updateSort() {
|
||||||
model.sortOrder = sortIndicatorOrder;
|
fileTableModel.sortOrder = sortIndicatorOrder;
|
||||||
model.sortColumn = sortIndicatorColumn;
|
fileTableModel.sortColumn = sortIndicatorColumn;
|
||||||
model.update();
|
fileTableModel.update();
|
||||||
}
|
}
|
||||||
|
|
||||||
onSortIndicatorColumnChanged: { updateSort(); }
|
onSortIndicatorColumnChanged: { updateSort(); }
|
||||||
|
|
|
@ -484,9 +484,9 @@ TabletModalWindow {
|
||||||
model: filesModel
|
model: filesModel
|
||||||
|
|
||||||
function updateSort() {
|
function updateSort() {
|
||||||
model.sortOrder = sortIndicatorOrder;
|
fileTableModel.sortOrder = sortIndicatorOrder;
|
||||||
model.sortColumn = sortIndicatorColumn;
|
fileTableModel.sortColumn = sortIndicatorColumn;
|
||||||
model.update();
|
fileTableModel.update();
|
||||||
}
|
}
|
||||||
|
|
||||||
onSortIndicatorColumnChanged: { updateSort(); }
|
onSortIndicatorColumnChanged: { updateSort(); }
|
||||||
|
|
Loading…
Reference in a new issue