mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-20 23:47:23 -06:00
@@ -86,6 +86,7 @@ PeerListWidget::PeerListWidget(PropertiesWidget *parent)
|
|||||||
setRootIsDecorated(false);
|
setRootIsDecorated(false);
|
||||||
setItemsExpandable(false);
|
setItemsExpandable(false);
|
||||||
setAllColumnsShowFocus(true);
|
setAllColumnsShowFocus(true);
|
||||||
|
setEditTriggers(QAbstractItemView::NoEditTriggers);
|
||||||
setSelectionMode(QAbstractItemView::ExtendedSelection);
|
setSelectionMode(QAbstractItemView::ExtendedSelection);
|
||||||
header()->setStretchLastSection(false);
|
header()->setStretchLastSection(false);
|
||||||
// List Model
|
// List Model
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ SearchJobWidget::SearchJobWidget(SearchHandler *searchHandler, QWidget *parent)
|
|||||||
unused.setVerticalHeader(new QHeaderView(Qt::Horizontal));
|
unused.setVerticalHeader(new QHeaderView(Qt::Horizontal));
|
||||||
|
|
||||||
loadSettings();
|
loadSettings();
|
||||||
m_ui->resultsBrowser->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
|
||||||
header()->setStretchLastSection(false);
|
header()->setStretchLastSection(false);
|
||||||
|
|
||||||
// Set Search results list model
|
// Set Search results list model
|
||||||
@@ -93,9 +93,11 @@ SearchJobWidget::SearchJobWidget(SearchHandler *searchHandler, QWidget *parent)
|
|||||||
m_ui->resultsBrowser->hideColumn(SearchSortModel::DL_LINK); // Hide url column
|
m_ui->resultsBrowser->hideColumn(SearchSortModel::DL_LINK); // Hide url column
|
||||||
m_ui->resultsBrowser->hideColumn(SearchSortModel::DESC_LINK);
|
m_ui->resultsBrowser->hideColumn(SearchSortModel::DESC_LINK);
|
||||||
|
|
||||||
|
m_ui->resultsBrowser->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
||||||
m_ui->resultsBrowser->setRootIsDecorated(false);
|
m_ui->resultsBrowser->setRootIsDecorated(false);
|
||||||
m_ui->resultsBrowser->setAllColumnsShowFocus(true);
|
m_ui->resultsBrowser->setAllColumnsShowFocus(true);
|
||||||
m_ui->resultsBrowser->setSortingEnabled(true);
|
m_ui->resultsBrowser->setSortingEnabled(true);
|
||||||
|
m_ui->resultsBrowser->setEditTriggers(QAbstractItemView::NoEditTriggers);
|
||||||
|
|
||||||
// Ensure that at least one column is visible at all times
|
// Ensure that at least one column is visible at all times
|
||||||
bool atLeastOne = false;
|
bool atLeastOne = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user