mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
Icons work again
Colors work again
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Collections.Specialized;
|
||||
using System.Linq;
|
||||
@@ -67,8 +68,8 @@ namespace ModernKeePass.ViewModels
|
||||
|
||||
public Symbol Icon
|
||||
{
|
||||
get { return (Symbol) _group.Icon; }
|
||||
set { _group.Icon = (Icon)value; }
|
||||
get { return (Symbol) Enum.Parse(typeof(Symbol), _group.Icon.ToString()); }
|
||||
set { _group.Icon = (Icon) Enum.Parse(typeof(Icon), value.ToString()); }
|
||||
}
|
||||
|
||||
public bool IsEditMode
|
||||
|
Reference in New Issue
Block a user