mirror of
https://github.com/moparisthebest/keepass2android
synced 2024-11-04 16:45:11 -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"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:versionCode="61"
|
||||
android:versionName="0.9.9-pre1"
|
||||
android:versionCode="62"
|
||||
android:versionName="0.9.9"
|
||||
package="keepass2android.keepass2android"
|
||||
android:installLocation="auto">
|
||||
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />
|
||||
|
@ -114,6 +114,7 @@ namespace keepass2android
|
||||
|
||||
|
||||
Button btnLock = (Button) FindViewById(Resource.Id.QuickUnlock_buttonLock);
|
||||
btnLock.Text = btnLock.Text.Replace("ß", "ss");
|
||||
btnLock.Click += (object sender, EventArgs e) =>
|
||||
{
|
||||
App.Kp2a.LockDatabase(false);
|
||||
|
@ -35,7 +35,6 @@ android:fitsSystemWindows="true">
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
style="@style/BottomBarButton"
|
||||
android:singleLine="true"
|
||||
android:id="@+id/QuickUnlock_buttonLock"
|
||||
android:layout_alignParentLeft="true"
|
||||
/>
|
||||
|
@ -96,7 +96,7 @@
|
||||
<style name="MyTheme_Blue" parent="MyTheme">
|
||||
<item name="colorPrimary">@color/appAccentColor</item>
|
||||
<!-- 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
|
||||
which is used to tint widgets -->
|
||||
<item name="colorAccent">@color/appAccentColor</item>
|
||||
|
Loading…
Reference in New Issue
Block a user