From cb8fe8462ae26289442e4ebd40c201e26caadba4 Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Tue, 12 Jan 2016 23:08:13 +0000 Subject: [PATCH] Moving nodes with keyboard should flag workspace dirty --- editor/js/ui/view.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/editor/js/ui/view.js b/editor/js/ui/view.js index ca291f64a..176b1bf43 100644 --- a/editor/js/ui/view.js +++ b/editor/js/ui/view.js @@ -1,5 +1,5 @@ /** - * Copyright 2013, 2015 IBM Corp. + * Copyright 2013, 2016 IBM Corp. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -821,6 +821,7 @@ RED.view = (function() { delete moving_set[i].oy; } RED.history.push({t:'move',nodes:ns,dirty:RED.nodes.dirty()}); + RED.nodes.dirty(true); } function moveSelection(dx,dy) { var minX = 0;