mirror of
https://github.com/moparisthebest/keepass2android
synced 2024-11-11 20:15:04 -05:00
fix wrong display name of built-in icon set in non-debug builds
This commit is contained in:
parent
959e269b9a
commit
272b7e6aad
@ -64,7 +64,7 @@ namespace keepass2android
|
||||
public static class AppNames
|
||||
{
|
||||
#if DEBUG
|
||||
public const string AppName = "Keepass2Android Debug";
|
||||
public const string AppName = "@string/app_name_debug";
|
||||
#else
|
||||
public const string AppName = "@string/app_name";
|
||||
#endif
|
||||
|
@ -166,7 +166,7 @@ namespace keepass2android
|
||||
|
||||
_iconSets.Add(new IconSet()
|
||||
{
|
||||
DisplayName = AppNames.AppName,
|
||||
DisplayName = Context.GetString(AppNames.AppNameResource),
|
||||
PackageName = Context.PackageName
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user