mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 13:49:46 +02:00
Merge pull request #13955 from zfox23/MS17877_connectionsSort
Fix MS17877: Persist Connections table sort choice
This commit is contained in:
commit
d8c30ff769
1 changed files with 6 additions and 0 deletions
|
@ -780,6 +780,12 @@ Rectangle {
|
||||||
headerVisible: true;
|
headerVisible: true;
|
||||||
sortIndicatorColumn: settings.connectionsSortIndicatorColumn;
|
sortIndicatorColumn: settings.connectionsSortIndicatorColumn;
|
||||||
sortIndicatorOrder: settings.connectionsSortIndicatorOrder;
|
sortIndicatorOrder: settings.connectionsSortIndicatorOrder;
|
||||||
|
onSortIndicatorColumnChanged: {
|
||||||
|
settings.connectionsSortIndicatorColumn = sortIndicatorColumn;
|
||||||
|
}
|
||||||
|
onSortIndicatorOrderChanged: {
|
||||||
|
settings.connectionsSortIndicatorOrder = sortIndicatorOrder;
|
||||||
|
}
|
||||||
|
|
||||||
TableViewColumn {
|
TableViewColumn {
|
||||||
id: connectionsUserNameHeader;
|
id: connectionsUserNameHeader;
|
||||||
|
|
Loading…
Reference in a new issue