InputStick plugin: don't type empty string when opening entry (no longer required)

This commit is contained in:
Philipp Crocoll 2014-11-07 05:33:22 +01:00
parent 99b03c24c2
commit 2e4c3e3490
2 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="keepass2android.plugin.inputstick" package="keepass2android.plugin.inputstick"
android:versionCode="2" android:versionCode="3"
android:versionName="1.1" > android:versionName="1.2" >
<uses-sdk <uses-sdk
android:minSdkVersion="14" android:minSdkVersion="14"

View File

@ -34,7 +34,7 @@ public class ActionReceiver extends keepass2android.pluginsdk.PluginActionBroadc
} catch (PluginAccessException e) { } catch (PluginAccessException e) {
e.printStackTrace(); e.printStackTrace();
} }
typeText(oe.getContext(), ""); //typeText(oe.getContext(), "");
} }
@Override @Override