mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
da3fde9a00
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() { }
|
|
}
|
|
}
|