mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 04:12:12 +00:00
Fixed: a single selected linedef was deselected after flipping it
This commit is contained in:
parent
ea15732e8d
commit
9fcb45e1b1
3 changed files with 3 additions and 10 deletions
|
@ -1,4 +1,4 @@
|
|||
URL http://devbuilds.drdteam.org/ultimatedoombuilder/
|
||||
FileName Builder.exe
|
||||
UpdateName UltimateDoomBuilder-r[REVNUM]-x86.7z
|
||||
UpdaterName UDB_Updater-x86.7z
|
||||
UpdateName UltimateDoomBuilder-r[REVNUM]-x64.7z
|
||||
UpdaterName UDB_Updater-x64.7z
|
|
@ -129,8 +129,8 @@
|
|||
<data name="label2.Text" xml:space="preserve">
|
||||
<value>Ultimate Doom Builder contributors:
|
||||
|
||||
• ZZYZX
|
||||
• boris
|
||||
• ZZYZX
|
||||
• dpJudas (OpenGL renderer)
|
||||
• StrikerMan780 (64-bit version)
|
||||
• Talon1024 (Linux compatibility)
|
||||
|
|
|
@ -1659,13 +1659,6 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
l.FlipSidedefs();
|
||||
}
|
||||
|
||||
// Remove selection if only one linedef was selected
|
||||
if(selectedcount == 1)
|
||||
{
|
||||
foreach(Linedef ld in selected) ld.Selected = false;
|
||||
selected.Clear();
|
||||
}
|
||||
|
||||
// Redraw
|
||||
General.Map.Map.Update();
|
||||
General.Map.IsChanged = true;
|
||||
|
|
Loading…
Reference in a new issue