Partially supported multilines.

This commit is contained in:
Paulo Veiga
2011-09-02 02:31:03 -03:00
parent e437e0e329
commit d43eb930d9
32 changed files with 804 additions and 353 deletions

View File

@@ -118,7 +118,7 @@ mindplot.LocalActionDispatcher = new Class({
var result = topic.getFontFamily();
topic.setFontFamily(fontFamily, true);
topic.updateNode.delay(0, topic);
topic._adjustShapes.delay(0, topic);
return result;
};
@@ -179,7 +179,7 @@ mindplot.LocalActionDispatcher = new Class({
var result = topic.getFontSize();
topic.setFontSize(size, true);
topic.updateNode.delay(0, topic);
topic._adjustShapes.delay(0, topic);
return result;
};
@@ -209,7 +209,7 @@ mindplot.LocalActionDispatcher = new Class({
var weight = (result == "bold") ? "normal" : "bold";
topic.setFontWeight(weight, true);
topic.updateNode.delay(0, topic);
topic._adjustShapes.delay(0, topic);
return result;
};
@@ -292,7 +292,7 @@ mindplot.CommandContext = new Class({
}
}.bind(this));
return result;
},
}
});