mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-10-29 14:35:45 +00:00
Correctif search sur NamePHB
This commit is contained in:
parent
624d84e923
commit
5d44a4d9f4
4 changed files with 7 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="5" android:versionName="1.04" package="com.nioux.aidedejeu" android:installLocation="auto">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="6" android:versionName="1.05" package="com.nioux.aidedejeu" android:installLocation="auto">
|
||||
<uses-sdk android:minSdkVersion="15" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<application android:label="Aide de Jeu"></application>
|
||||
<application android:label="Aide de Jeu" android:icon="@drawable/icon"></application>
|
||||
</manifest>
|
||||
|
|
@ -40,7 +40,7 @@ namespace AideDeJeu.ViewModels
|
|||
Items.Clear();
|
||||
foreach (var item in AllItems)
|
||||
{
|
||||
if (item.Name.ToLower().Contains(SearchText.ToLower()))
|
||||
if (item.NamePHB.ToLower().Contains(SearchText.ToLower()))
|
||||
{
|
||||
Items.Add(item);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -28,6 +28,8 @@ namespace AideDeJeu.Views
|
|||
var item = new Monster
|
||||
{
|
||||
Name = "",
|
||||
NameVO = "",
|
||||
NamePHB = "",
|
||||
//Description = "This is an item description."
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -25,6 +25,8 @@ namespace AideDeJeu.Views
|
|||
var item = new Spell
|
||||
{
|
||||
Name = "",
|
||||
NameVO = "",
|
||||
NamePHB = "",
|
||||
//Description = "This is an item description."
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue