Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiago Conceição <Tiago_caza@hotmail.com>2020-07-28 05:56:49 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2020-07-28 05:56:49 +0300
commit858bc33d2d8518ac0aa0ad06be7c65c68071434e (patch)
tree19586b232404dffe58cff9ed969eecf69fc3556d /UVtools.GUI/Forms/FrmMutation.cs
parentc76a68c29bc041c571b30995ec59c03d27b4ceea (diff)
v0.6.3.4v0.6.3.4
* (Add) Mutator: Threshold pixels * (Change) Mutator: PyrDownUp - Name to "Big Blur" and add better description of the effect * (Change) Mutator: SmoothMedian - Better description * (Change) Mutator: SmoothGaussian - Better description * (Fix) Tool: Layer Re-Height - When go lower heights the pixels count per layer statistics are lost * (Fix) "Pixel Edit" has the old tooltip text (#14) * (Fix) Readme: Text fixes (#14)
Diffstat (limited to 'UVtools.GUI/Forms/FrmMutation.cs')
-rw-r--r--UVtools.GUI/Forms/FrmMutation.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/UVtools.GUI/Forms/FrmMutation.cs b/UVtools.GUI/Forms/FrmMutation.cs
index e8ba854..24035e4 100644
--- a/UVtools.GUI/Forms/FrmMutation.cs
+++ b/UVtools.GUI/Forms/FrmMutation.cs
@@ -207,7 +207,8 @@ namespace UVtools.GUI.Forms
}
}
- if (MessageBox.Show($"Are you sure you want to {Mutation.Mutate}?", Text, MessageBoxButtons.YesNo,
+ var operationName = string.IsNullOrEmpty(Mutation.MenuName) ? Mutation.Mutate.ToString() : Mutation.MenuName;
+ if (MessageBox.Show($"Are you sure you want to {operationName}?", Text, MessageBoxButtons.YesNo,
MessageBoxIcon.Question) == DialogResult.Yes)
{
DialogResult = DialogResult.OK;