mirror of
https://github.com/moparisthebest/keepass2android
synced 2024-11-26 11:12:15 -05:00
fix for missing last charactor on "close database" button in German
dark status bar color for blue theme Version 0.9.9 (preview 2)
This commit is contained in:
parent
88e6c13513
commit
bcd7aa722e
@ -1,7 +1,7 @@
|
|||||||
<?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"
|
||||||
android:versionCode="61"
|
android:versionCode="62"
|
||||||
android:versionName="0.9.9-pre1"
|
android:versionName="0.9.9"
|
||||||
package="keepass2android.keepass2android"
|
package="keepass2android.keepass2android"
|
||||||
android:installLocation="auto">
|
android:installLocation="auto">
|
||||||
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />
|
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />
|
||||||
|
@ -114,6 +114,7 @@ namespace keepass2android
|
|||||||
|
|
||||||
|
|
||||||
Button btnLock = (Button) FindViewById(Resource.Id.QuickUnlock_buttonLock);
|
Button btnLock = (Button) FindViewById(Resource.Id.QuickUnlock_buttonLock);
|
||||||
|
btnLock.Text = btnLock.Text.Replace("ß", "ss");
|
||||||
btnLock.Click += (object sender, EventArgs e) =>
|
btnLock.Click += (object sender, EventArgs e) =>
|
||||||
{
|
{
|
||||||
App.Kp2a.LockDatabase(false);
|
App.Kp2a.LockDatabase(false);
|
||||||
|
@ -35,7 +35,6 @@ android:fitsSystemWindows="true">
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
style="@style/BottomBarButton"
|
style="@style/BottomBarButton"
|
||||||
android:singleLine="true"
|
|
||||||
android:id="@+id/QuickUnlock_buttonLock"
|
android:id="@+id/QuickUnlock_buttonLock"
|
||||||
android:layout_alignParentLeft="true"
|
android:layout_alignParentLeft="true"
|
||||||
/>
|
/>
|
||||||
|
@ -96,7 +96,7 @@
|
|||||||
<style name="MyTheme_Blue" parent="MyTheme">
|
<style name="MyTheme_Blue" parent="MyTheme">
|
||||||
<item name="colorPrimary">@color/appAccentColor</item>
|
<item name="colorPrimary">@color/appAccentColor</item>
|
||||||
<!-- colorPrimaryDark is used for the status bar -->
|
<!-- colorPrimaryDark is used for the status bar -->
|
||||||
<item name="colorPrimaryDark">@color/appAccentColor</item>
|
<item name="colorPrimaryDark">@color/appAccentColorDark</item>
|
||||||
<!-- colorAccent is used as the default value for colorControlActivated
|
<!-- colorAccent is used as the default value for colorControlActivated
|
||||||
which is used to tint widgets -->
|
which is used to tint widgets -->
|
||||||
<item name="colorAccent">@color/appAccentColor</item>
|
<item name="colorAccent">@color/appAccentColor</item>
|
||||||
|
Loading…
Reference in New Issue
Block a user