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:
biwa 2022-08-28 18:25:50 +02:00
parent ce6b8de4fd
commit d2967e7a78

View file

@ -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();
}