1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-25 07:37:46 +02:00

fix delay

This commit is contained in:
antelle 2016-04-10 12:10:48 +03:00
parent 4f66d35600
commit 55a793ed8b

View File

@ -58,7 +58,7 @@ AutoTypeEmitterImpl.prototype.key = function(key, callback) {
AutoTypeEmitterImpl.prototype.paste = function(callback) {
this.pendingScript.push('keystroke "v" using command down');
this.pendingScript.push('delay 0.2');
this.pendingScript.push('delay 0.5');
this.waitComplete(callback);
};