mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-29 20:02:15 +02:00
v0.6.4.1
* (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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user