Skip to content

Commit 15ffcb4

Browse files
committedDec 21, 2017
[bookmarks] Case insensitive sorting
Fixes #17005
1 parent 5daf33a commit 15ffcb4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎src/app/qgsbookmarks.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ QgsBookmarks::QgsBookmarks( QWidget *parent )
109109

110110
mProxyModel = new QgsBookmarksProxyModel( this );
111111
mProxyModel->setSourceModel( mMergedModel );
112+
mProxyModel->setSortCaseSensitivity( Qt::CaseInsensitive );
112113

113114
lstBookmarks->setModel( mProxyModel );
114115
lstBookmarks->setItemDelegate( new QgsDoubleSpinBoxBookmarksDelegate( this ) );

‎src/ui/qgsbookmarksbase.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</rect>
1212
</property>
1313
<property name="windowTitle">
14-
<string>Sp&amp;atial Bookmarks Panel</string>
14+
<string>Spatial Bookmarks Panel</string>
1515
</property>
1616
<widget class="QWidget" name="bookmarksDockContents">
1717
<layout class="QGridLayout" name="gridLayout">

0 commit comments

Comments
 (0)
Please sign in to comment.