src/addObjectDialog.cpp

changeset 265
955c0aabfebf
parent 254
434c9844e45d
child 266
12e7302f14e9
--- a/src/addObjectDialog.cpp	Tue May 28 18:30:40 2013 +0300
+++ b/src/addObjectDialog.cpp	Sat Jun 01 03:17:52 2013 +0300
@@ -382,10 +382,6 @@
 	if (dlg.exec () == false)
 		return;
 	
-	LDObject* backup = null;
-	if (!newObject)
-		backup = obj->clone ();
-	
 	matrix transform = g_identity;
 	if (type == LDObject::Subfile || type == LDObject::Radial) {
 		vector<str> matrixstrvals = str (dlg.le_matrix->text ()).split (" ");
@@ -505,9 +501,6 @@
 	if (newObject) {
 		ulong idx = g_win->getInsertionPoint ();
 		g_curfile->insertObj (idx, obj);
-		History::addEntry (new AddHistory ({(ulong) idx}, {obj->clone ()}));
-	} else {
-		History::addEntry (new EditHistory ({(ulong) obj->getIndex (g_curfile)}, {backup}, {obj->clone ()}));
 	}
 	
 	g_win->fullRefresh ();

mercurial