mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
Ladybird/Qt: Find the previous search match when the shift key is held
This commit is contained in:
@@ -77,7 +77,10 @@ void FindInPageWidget::keyPressEvent(QKeyEvent* event)
|
|||||||
setVisible(false);
|
setVisible(false);
|
||||||
break;
|
break;
|
||||||
case Qt::Key_Return:
|
case Qt::Key_Return:
|
||||||
m_next_button->click();
|
if (event->modifiers().testFlag(Qt::ShiftModifier))
|
||||||
|
m_previous_button->click();
|
||||||
|
else
|
||||||
|
m_next_button->click();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
event->ignore();
|
event->ignore();
|
||||||
|
|||||||
Reference in New Issue
Block a user