mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2024-11-10 06:41:49 +00:00
3232e162e6
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).
11 lines
265 B
C#
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() { }
|
|
}
|
|
}
|