Files
UVtools/UVtools.Core/Operations/OperationSolidify.cs
T
Bryce Yancey 8e85fe2995 Refresh of text for all operations
Mostly text updates, with a few adjustments
to dialog box layouts or controls.

Presets for Threshold, for example, where changed
from buttons to a combobox selections.

Allowed the line splits added by Designer to remain, but
did fix any mid-word breaks.
2020-09-10 16:29:11 -06:00

32 lines
1.1 KiB
C#

/*
* GNU AFFERO GENERAL PUBLIC LICENSE
* Version 3, 19 November 2007
* Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
* Everyone is permitted to copy and distribute verbatim copies
* of this license document, but changing it is not allowed.
*/
namespace UVtools.Core.Operations
{
public sealed class OperationSolidify : Operation
{
#region Overrides
public override string Title => "Solidify";
public override string Description =>
"Solidifies the selected layers, closing all interior holes.\n\n" +
"NOTE: All open areas of the layer that are completely surrounded by pixels will be filled. Please ensure that none of the holes in the layer are required before proceeding.";
public override string ConfirmationText =>
$"solidify layers {LayerIndexStart} through {LayerIndexEnd}?";
public override string ProgressTitle =>
$"Solidifying layers {LayerIndexStart} through {LayerIndexEnd}";
public override string ProgressAction => "Solidified layers";
#endregion
}
}