mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-26 05:41:45 +00:00
Linedefs Mode: fixed a problem where the "Select Single-sided only" and "Select Double-sided only" actions would still display the selection numbers of deselected linedefs
This commit is contained in:
parent
ce6b8de4fd
commit
d2967e7a78
1 changed files with 5 additions and 1 deletions
|
@ -1395,7 +1395,9 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
else
|
||||
counter++;
|
||||
}
|
||||
|
||||
|
||||
UpdateSelectionInfo();
|
||||
|
||||
General.Interface.DisplayStatus(StatusType.Action, "Selected only single-sided linedefs (" + counter + ")");
|
||||
General.Interface.RedrawDisplay();
|
||||
}
|
||||
|
@ -1414,6 +1416,8 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
counter++;
|
||||
}
|
||||
|
||||
UpdateSelectionInfo();
|
||||
|
||||
General.Interface.DisplayStatus(StatusType.Action, "Selected only double-sided linedefs (" + counter + ")");
|
||||
General.Interface.RedrawDisplay();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue