mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
Fix entry preview resetting when focusing out of entry view
* Fixes #7061 * This bug impacts linux only when clicking in the preview panel.
This commit is contained in:
parent
004f2b6801
commit
c37e2d3d69
@ -200,12 +200,6 @@ void EntryView::focusInEvent(QFocusEvent* event)
|
||||
QTreeView::focusInEvent(event);
|
||||
}
|
||||
|
||||
void EntryView::focusOutEvent(QFocusEvent* event)
|
||||
{
|
||||
emit entrySelectionChanged(nullptr);
|
||||
QTreeView::focusOutEvent(event);
|
||||
}
|
||||
|
||||
void EntryView::displayGroup(Group* group)
|
||||
{
|
||||
m_model->setGroup(group);
|
||||
|
@ -59,7 +59,6 @@ signals:
|
||||
protected:
|
||||
void keyPressEvent(QKeyEvent* event) override;
|
||||
void focusInEvent(QFocusEvent* event) override;
|
||||
void focusOutEvent(QFocusEvent* event) override;
|
||||
void showEvent(QShowEvent* event) override;
|
||||
|
||||
private slots:
|
||||
|
Loading…
Reference in New Issue
Block a user