mirror of
https://github.com/moparisthebest/keepass2android
synced 2024-12-22 23:18:48 -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)
|
||||
{
|
||||
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:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/entry_user_name"
|
||||
android:text="@string/entry_comment"
|
||||
style="@style/EntryFieldHeader" />
|
||||
<!-- Comment -->
|
||||
<RelativeLayout
|
||||
|
Loading…
Reference in New Issue
Block a user