mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-10-11 04:58:31 -04:00
Extended autotype syntax to allow all things in keepass2
This commit is contained in:
parent
4fcedc2187
commit
d524aea779
2 changed files with 35 additions and 3 deletions
|
@ -20,6 +20,7 @@
|
|||
|
||||
#include <QApplication>
|
||||
#include <QPluginLoader>
|
||||
#include <iostream>
|
||||
|
||||
#include "config-keepassx.h"
|
||||
|
||||
|
@ -396,7 +397,7 @@ QList<AutoTypeAction*> AutoType::createActionFromTemplate(const QString& tmpl, c
|
|||
QMessageBox::StandardButton reply;
|
||||
reply = QMessageBox::question(0,
|
||||
"AutoType",
|
||||
"This AutoType command contains a very long delay. Do you really want to execute it?");
|
||||
tr("This AutoType command contains a very long delay. Do you really want to execute it?"));
|
||||
|
||||
if (reply == QMessageBox::No) {
|
||||
return list;
|
||||
|
@ -407,7 +408,7 @@ QList<AutoTypeAction*> AutoType::createActionFromTemplate(const QString& tmpl, c
|
|||
QMessageBox::StandardButton reply;
|
||||
reply = QMessageBox::question(0,
|
||||
"AutoType",
|
||||
"This AutoType command contains arguments which are repeated very often. Do you really want to execute it?");
|
||||
tr("This AutoType command contains arguments which are repeated very often. Do you really want to execute it?"));
|
||||
|
||||
if (reply == QMessageBox::No) {
|
||||
return list;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue