fix wrong heading of notes field,

fix sorting of groups (not case sensitive)
This commit is contained in:
Philipp Crocoll 2015-03-14 21:58:14 +01:00
parent ba1e591dc7
commit de56c5376e
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}
}

View File

@ -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