mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-14 10:39:35 -04:00
Fix text selection for clear_field step on Mac
This commit is contained in:
parent
fa53c79ecf
commit
95aaa96fb8
1 changed files with 2 additions and 2 deletions
|
@ -267,8 +267,8 @@ AutoTypeAction::Result AutoTypeExecutorMac::execType(const AutoTypeKey* action)
|
||||||
AutoTypeAction::Result AutoTypeExecutorMac::execClearField(const AutoTypeClearField* action)
|
AutoTypeAction::Result AutoTypeExecutorMac::execClearField(const AutoTypeClearField* action)
|
||||||
{
|
{
|
||||||
Q_UNUSED(action);
|
Q_UNUSED(action);
|
||||||
execType(new AutoTypeKey(Qt::Key_Up, Qt::ControlModifier));
|
execType(new AutoTypeKey(Qt::Key_Left, Qt::ControlModifier));
|
||||||
execType(new AutoTypeKey(Qt::Key_Down, Qt::ControlModifier | Qt::ShiftModifier));
|
execType(new AutoTypeKey(Qt::Key_Right, Qt::ControlModifier | Qt::ShiftModifier));
|
||||||
execType(new AutoTypeKey(Qt::Key_Backspace));
|
execType(new AutoTypeKey(Qt::Key_Backspace));
|
||||||
return AutoTypeAction::Result::Ok();
|
return AutoTypeAction::Result::Ok();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue