Fix error when press enter over a isolated node

Fix prediction error when the node is a isolated node.
This commit is contained in:
Paulo Gustavo Veiga 2012-08-20 11:22:19 -03:00
parent da6859313b
commit 28bbc4c846
2 changed files with 10 additions and 10 deletions

View File

@ -473,7 +473,7 @@ mindplot.Designer = new Class({
}
var topic = nodes[0];
if (topic.getType() == mindplot.model.INodeModel.CENTRAL_TOPIC_TYPE) {
if (!topic.getOutgoingConnectedTopic()) { // Central topic and isolated topics ....
// Central topic doesn't have siblings ...
this.createChildForSelectedNode();

View File

@ -92,7 +92,7 @@ mindplot.layout.SymmetricSorter = new Class({
// Fit at the bottom
if (!nodeAfter && position.y > parentChild.getPosition().y) {
var order = graph.getParent(node).getId() == parent.getId() ?
var order = (graph.getParent(node) && graph.getParent(node).getId() == parent.getId()) ?
last.getOrder() : last.getOrder() + 1;
var position = {
x:parentChild.getPosition().x,