From fbc521cbc5f1cc820ca66f713da92a1540312670 Mon Sep 17 00:00:00 2001 From: thunder2 Date: Fri, 20 Mar 2015 14:52:10 +0000 Subject: [PATCH] Fixed content of GxsIdChooser for Qt 5 by setting dynamicSortFilter to false. Change in the default value Qt 4 = false Qt 5 = true git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8058 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- retroshare-gui/src/gui/gxs/GxsIdChooser.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/retroshare-gui/src/gui/gxs/GxsIdChooser.cpp b/retroshare-gui/src/gui/gxs/GxsIdChooser.cpp index e76684731..9dbc2c46b 100644 --- a/retroshare-gui/src/gui/gxs/GxsIdChooser.cpp +++ b/retroshare-gui/src/gui/gxs/GxsIdChooser.cpp @@ -63,6 +63,7 @@ GxsIdChooser::GxsIdChooser(QWidget *parent) /* Enable sort with own role */ QSortFilterProxyModel *proxy = new QSortFilterProxyModel(this); proxy->setSourceModel(model()); + proxy->setDynamicSortFilter(false); model()->setParent(proxy); setModel(proxy);