mirror of
https://github.com/lubosz/overte.git
synced 2025-08-29 16:28:03 +02:00
Fix MS17877: Persist Connections table sort choice
This commit is contained in:
parent
7bbedf65c7
commit
0e785f9bdb
1 changed files with 6 additions and 0 deletions
|
@ -780,6 +780,12 @@ Rectangle {
|
|||
headerVisible: true;
|
||||
sortIndicatorColumn: settings.connectionsSortIndicatorColumn;
|
||||
sortIndicatorOrder: settings.connectionsSortIndicatorOrder;
|
||||
onSortIndicatorColumnChanged: {
|
||||
settings.connectionsSortIndicatorColumn = sortIndicatorColumn;
|
||||
}
|
||||
onSortIndicatorOrderChanged: {
|
||||
settings.connectionsSortIndicatorOrder = sortIndicatorOrder;
|
||||
}
|
||||
|
||||
TableViewColumn {
|
||||
id: connectionsUserNameHeader;
|
||||
|
|
Loading…
Reference in a new issue