Skip to content

Commit

Permalink
Auto update CHANGELOG and sorting of treeview
Browse files Browse the repository at this point in the history
  • Loading branch information
annejan committed Aug 6, 2018
1 parent fd56323 commit b4dc9e6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -24,6 +24,7 @@

**Merged pull requests:**

- pwgen: fix inverted "Generate ... less secure passwords" checkbox [\#409](https://github.com/IJHack/QtPass/pull/409) ([ahippo](https://github.com/ahippo))
- \#390 make box cheched when opening a folder users panel [\#403](https://github.com/IJHack/QtPass/pull/403) ([kenji21](https://github.com/kenji21))

## [v1.2.3](https://github.com/IJHack/QtPass/tree/v1.2.3) (2018-06-04)
Expand Down
6 changes: 6 additions & 0 deletions src/mainwindow.ui
Expand Up @@ -132,6 +132,12 @@
<property name="dragDropMode">
<enum>QAbstractItemView::InternalMove</enum>
</property>
<property name="sortingEnabled">
<bool>true</bool>
</property>
<property name="animated">
<bool>true</bool>
</property>
<attribute name="headerStretchLastSection">
<bool>false</bool>
</attribute>
Expand Down

2 comments on commit b4dc9e6

@cgonzalez
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

After this commit the TreeView is sorted in alphabetical reverse order. I have made sortingEnabled = false and the list is sorted in alphabetical order again.

@FiloSpaTeam
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep i fixed this too :) i sorted with C++ sortedByColumn function #407

Please sign in to comment.