diff --git a/ApplicationLibCode/Commands/OsduImportCommands/RiuWellImportWizard.cpp b/ApplicationLibCode/Commands/OsduImportCommands/RiuWellImportWizard.cpp index 9a1e2c79c8..10e97818ba 100644 --- a/ApplicationLibCode/Commands/OsduImportCommands/RiuWellImportWizard.cpp +++ b/ApplicationLibCode/Commands/OsduImportCommands/RiuWellImportWizard.cpp @@ -351,7 +351,7 @@ WellSelectionPage::WellSelectionPage( RiaOsduConnector* osduConnector, QWidget* m_tableView = new QTableView( this ); m_tableView->setSelectionBehavior( QAbstractItemView::SelectRows ); - m_tableView->setSelectionMode( QAbstractItemView::MultiSelection ); + m_tableView->setSelectionMode( QAbstractItemView::ExtendedSelection ); m_tableView->setSortingEnabled( true ); int nameColumn = 2; m_tableView->sortByColumn( nameColumn, Qt::AscendingOrder ); diff --git a/ApplicationLibCode/Commands/OsduImportCommands/RiuWellLogImportWizard.cpp b/ApplicationLibCode/Commands/OsduImportCommands/RiuWellLogImportWizard.cpp index 714dce642e..53d24a2c17 100644 --- a/ApplicationLibCode/Commands/OsduImportCommands/RiuWellLogImportWizard.cpp +++ b/ApplicationLibCode/Commands/OsduImportCommands/RiuWellLogImportWizard.cpp @@ -179,7 +179,7 @@ WellLogSelectionPage::WellLogSelectionPage( RiaOsduConnector* osduConnector, QWi m_tableView = new QTableView( this ); m_tableView->setSelectionBehavior( QAbstractItemView::SelectRows ); - m_tableView->setSelectionMode( QAbstractItemView::MultiSelection ); + m_tableView->setSelectionMode( QAbstractItemView::ExtendedSelection ); m_tableView->setSortingEnabled( true ); int nameColumn = 2; m_tableView->sortByColumn( nameColumn, Qt::AscendingOrder );