1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00

Merge branch 'mikolajp/falkon-master'

Rebasing to current master
This commit is contained in:
Mikalai Ahnioŭ 2021-03-06 20:38:25 +03:00
commit 1cf46c9f10

View File

@ -85,8 +85,8 @@ CookieManager::CookieManager(QWidget *parent)
ui->cookieTree->header()->setDefaultSectionSize(220); ui->cookieTree->header()->setDefaultSectionSize(220);
ui->cookieTree->setFocus(); ui->cookieTree->setFocus();
ui->whiteList->setSortingEnabled(true); ui->whiteList->sortItems(Qt::AscendingOrder);
ui->blackList->setSortingEnabled(true); ui->blackList->sortItems(Qt::AscendingOrder);
QShortcut* removeShortcut = new QShortcut(QKeySequence("Del"), this); QShortcut* removeShortcut = new QShortcut(QKeySequence("Del"), this);
connect(removeShortcut, &QShortcut::activated, this, &CookieManager::deletePressed); connect(removeShortcut, &QShortcut::activated, this, &CookieManager::deletePressed);