diff --git a/retroshare-gui/src/gui/Identity/IdDialog.cpp b/retroshare-gui/src/gui/Identity/IdDialog.cpp index 464a4fe10..2f22229d7 100644 --- a/retroshare-gui/src/gui/Identity/IdDialog.cpp +++ b/retroshare-gui/src/gui/Identity/IdDialog.cpp @@ -133,8 +133,8 @@ class TreeWidgetItem : public QTreeWidgetItem return v1 < v2; } - else - return data(column,Qt::DisplayRole).toString() < other.data(column,Qt::DisplayRole).toString(); + else // case insensitive sorting + return data(column,Qt::DisplayRole).toString().toUpper() < other.data(column,Qt::DisplayRole).toString().toUpper(); } };