Fix VS auto-merging issue with stair sector builder

This commit is contained in:
spherallic 2023-05-07 16:10:52 +02:00
parent 9f7b511224
commit 13b2156b08
1 changed files with 8 additions and 0 deletions

View File

@ -842,6 +842,14 @@ namespace CodeImp.DoomBuilder.StairSectorBuilderMode
DoRedrawDisplay();
}
private void prefabload_Click(object sender, EventArgs e)
{
if (prefabs.SelectedIndices.Count == 0) return;
LoadPrefab(prefabs.SelectedIndices[0]);
DoRedrawDisplay();
}
private void prefabdelete_Click(object sender, EventArgs e)
{