Skip to content
Snippets Groups Projects
Commit ca6769b7 authored by biwa's avatar biwa
Browse files

Visual Mode: fixed a problem where flood selection did not work correctly when...

Visual Mode: fixed a problem where flood selection did not work correctly when sidedefs were previously marked by other actions
parent 1f21b797
Branches
No related tags found
No related merge requests found
......@@ -609,7 +609,12 @@ namespace CodeImp.DoomBuilder.BuilderModes
}
// [ZZ] use the marking system.
if (clearlinedefs) General.Map.Map.ClearMarkedLinedefs(false);
if (clearlinedefs)
{
General.Map.Map.ClearMarkedLinedefs(false);
General.Map.Map.ClearMarkedSidedefs(false);
}
Sidedef.Line.Marked = true;
// Select
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment