From fd255364b310003aecfcd6d9ccaff98f5fcee6b2 Mon Sep 17 00:00:00 2001 From: whitequark Date: Mon, 20 Jun 2016 13:47:14 +0000 Subject: [PATCH] Show "Paste" context menu item even when only constraints are copied. --- src/mouse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mouse.cpp b/src/mouse.cpp index f41f2e1..1df0896 100644 --- a/src/mouse.cpp +++ b/src/mouse.cpp @@ -619,7 +619,7 @@ void GraphicsWindow::MouseRightUp(double x, double y) { } } - if(SS.clipboard.r.n > 0 && LockedInWorkplane()) { + if((SS.clipboard.r.n > 0 || SS.clipboard.c.n > 0) && LockedInWorkplane()) { AddContextMenuItem("Paste", CMNU_PASTE); AddContextMenuItem("Paste Transformed...", CMNU_PASTE_XFRM); }