Sector Edit form, UDMF: floor and ceiling rotation angles can now be entered as decimals.

Visual mode: removed unrelated message when copying textures using "Copy Selection" action.
This commit is contained in:
MaxED 2013-09-11 14:22:11 +00:00
parent 038ab51058
commit ae1b2153ef
4 changed files with 129 additions and 132 deletions

View file

@ -2548,10 +2548,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
[BeginAction("copyselection", BaseAction = true)]
public void CopySelection() {
List<IVisualEventReceiver> objs = GetSelectedObjects(false, false, true, false);
if (objs.Count == 0) {
General.Interface.DisplayStatus(StatusType.Warning, "Nothing to copy, select some Things first!");
return;
}
if (objs.Count == 0) return;
copyBuffer.Clear();
foreach (IVisualEventReceiver i in objs) {