mirror of
https://github.com/moparisthebest/keepass2android
synced 2025-01-10 21:18:18 -05:00
fix wrong heading of notes field,
fix sorting of groups (not case sensitive)
This commit is contained in:
parent
ba1e591dc7
commit
de56c5376e
@ -149,7 +149,7 @@ namespace keepass2android
|
|||||||
|
|
||||||
public int CompareGroups(PwGroup a, PwGroup b)
|
public int CompareGroups(PwGroup a, PwGroup b)
|
||||||
{
|
{
|
||||||
return String.CompareOrdinal(a.Name, b.Name);
|
return String.Compare(a.Name, a.Name, StringComparison.OrdinalIgnoreCase);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -153,7 +153,7 @@
|
|||||||
android:id="@+id/entry_comment_label"
|
android:id="@+id/entry_comment_label"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/entry_user_name"
|
android:text="@string/entry_comment"
|
||||||
style="@style/EntryFieldHeader" />
|
style="@style/EntryFieldHeader" />
|
||||||
<!-- Comment -->
|
<!-- Comment -->
|
||||||
<RelativeLayout
|
<RelativeLayout
|
||||||
|
Loading…
Reference in New Issue
Block a user