mirror of
https://github.com/chris2511/xca.git
synced 2026-09-14 11:06:19 +05:00
fix initial order to be ascending
This commit is contained in:
parent
002f8fe75c
commit
fb02a165ac
@ -1,3 +1,4 @@
|
||||
* set initial sorting to ascending order
|
||||
* add RFC2253 representation of subject and issuer
|
||||
* to copy&paste
|
||||
* fix dialog sizes for long DNs
|
||||
|
||||
@ -64,6 +64,7 @@ XcaTreeView::XcaTreeView(QWidget *parent)
|
||||
setEditTriggers(QAbstractItemView::EditKeyPressed);
|
||||
setRootIsDecorated(false);
|
||||
setUniformRowHeights (true);
|
||||
//setAnimated(true);
|
||||
|
||||
proxy = new QSortFilterProxyModel(this);
|
||||
#if QT_VERSION >= 0x040200
|
||||
@ -74,6 +75,7 @@ XcaTreeView::XcaTreeView(QWidget *parent)
|
||||
header()->setSortIndicatorShown(true);
|
||||
#endif
|
||||
basemodel = NULL;
|
||||
sortByColumn(0, Qt::AscendingOrder);
|
||||
}
|
||||
|
||||
XcaTreeView::~XcaTreeView()
|
||||
|
||||
Loading…
Reference in New Issue
Block a user