mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
Added focus for searchbar in history sidebar & bookmark sidebar
Summary: After Adding Focus , user can directly search after pressing ctrl+h in history sidebar & ctrl+shift+b in bookmark sidebar BUG: 393948 Reviewers: #falkon, drosca Reviewed By: #falkon, drosca Subscribers: SGOrava, falkon, #falkon Tags: #falkon Differential Revision: https://phabricator.kde.org/D20022
This commit is contained in:
parent
ae495bcc60
commit
e66835b4bf
|
@ -134,3 +134,9 @@ void BookmarksSidebar::createContextMenu(const QPoint &pos)
|
|||
|
||||
menu.exec(pos);
|
||||
}
|
||||
|
||||
void BookmarksSidebar::showEvent(QShowEvent *event)
|
||||
{
|
||||
QWidget::showEvent(event);
|
||||
ui->search->setFocus();
|
||||
}
|
||||
|
|
|
@ -53,6 +53,8 @@ private Q_SLOTS:
|
|||
void createContextMenu(const QPoint &pos);
|
||||
|
||||
private:
|
||||
void showEvent(QShowEvent *event) override;
|
||||
|
||||
Ui::BookmarksSideBar* ui;
|
||||
BrowserWindow* m_window;
|
||||
Bookmarks* m_bookmarks;
|
||||
|
|
|
@ -103,6 +103,12 @@ void HistorySideBar::createContextMenu(const QPoint &pos)
|
|||
menu.exec(pos);
|
||||
}
|
||||
|
||||
void HistorySideBar::showEvent(QShowEvent *event)
|
||||
{
|
||||
QWidget::showEvent(event);
|
||||
ui->search->setFocus();
|
||||
}
|
||||
|
||||
HistorySideBar::~HistorySideBar()
|
||||
{
|
||||
delete ui;
|
||||
|
|
|
@ -51,6 +51,8 @@ private Q_SLOTS:
|
|||
void createContextMenu(const QPoint &pos);
|
||||
|
||||
private:
|
||||
void showEvent(QShowEvent *event) override;
|
||||
|
||||
Ui::HistorySideBar* ui;
|
||||
BrowserWindow* m_window;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Block a user