ZoneBuilder/Source/Plugins/BuilderModes/General/SelectionLabel.cs
MaxED 3232e162e6 Fixed, Tag Statistics window: fixed a crash when applying changes after deleting a tag label.
Fixed, Script Editor: fixed infinite loop when trying to search for empty string.
Changed, Linedefs mode: selection labels are now positioned in a less line angle obscuring way.
Changed, Draw Lines mode: text label background alpha didn't match the alpha of the labels used in other classic modes.
Updated ZDoom_ACS.cfg (SetMusicVolume).
Updated ZDoom ACC (SetMusicVolume).
2023-01-04 17:38:43 +01:00

11 lines
265 B
C#

namespace CodeImp.DoomBuilder.BuilderModes
{
internal class SelectionLabel : LineLengthLabel
{
// Constructor
public SelectionLabel() : base(false, true) { }
// We don't want any changes here
protected override void UpdateText() { }
}
}