Merge pull request from zfox23/MS17877_connectionsSort

Fix MS17877: Persist Connections table sort choice
This commit is contained in:
Zach Fox 2018-09-07 09:17:15 -07:00 committed by GitHub
commit d8c30ff769
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -780,6 +780,12 @@ Rectangle {
headerVisible: true;
sortIndicatorColumn: settings.connectionsSortIndicatorColumn;
sortIndicatorOrder: settings.connectionsSortIndicatorOrder;
onSortIndicatorColumnChanged: {
settings.connectionsSortIndicatorColumn = sortIndicatorColumn;
}
onSortIndicatorOrderChanged: {
settings.connectionsSortIndicatorOrder = sortIndicatorOrder;
}
TableViewColumn {
id: connectionsUserNameHeader;