* (Add) Partial update islands from current working layer and next layer when using pixel editor or island remove
* (Add) Setting: To enable or disable partial update islands
* (Change) Properties, Issues, Pixel Editor: ListView upgraded to a FastObjectListView, resulting in faster renders, sorting capabilities, column order, groups with counter, selection, hot tracking, filtering and empty list message
* (Change) Log: ObjectListView upgraded to a FastObjectListView
* (Change) Bunch of icons
This commit is contained in:
Tiago Conceição
2020-08-04 05:08:24 +01:00
parent 54130124f9
commit 012d9e4b70
50 changed files with 2018 additions and 971 deletions
+3 -2
View File
@@ -20,16 +20,17 @@ namespace UVtools.GUI
public string Description { get; }
public Image Image { get; }
public Image MenuImage { get; }
#endregion
#region Constructor
public Mutation(LayerManager.Mutate mutate, string menuName, string description, Image image = null)
public Mutation(LayerManager.Mutate mutate, string menuName, Image menuImage, string description, Image image = null)
{
Mutate = mutate;
MenuName = menuName ?? mutate.ToString();
Description = description;
Image = image;
MenuImage = menuImage ?? Properties.Resources.filter_filled_16x16;
}
#endregion