Skip to content
Snippets Groups Projects
Commit 4521d2ca authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

BUG: allow multiple selections with shift+click

parent 7f49ba2e
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,7 @@ void QtWidgetListViewParameter::DoCreateWidget()
{
m_ListView = new QListWidget();
m_ListView->setToolTip(m_ListViewParam->GetDescription());
m_ListView->setSelectionMode(QAbstractItemView::MultiSelection);
m_ListView->setSelectionMode(QAbstractItemView::ExtendedSelection);
connect( m_ListView, SIGNAL(itemSelectionChanged()), this, SLOT(SelectedItems()) );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment