diff options
-rw-r--r-- | webapps/swat/source/class/swat/module/netmgr/Fsm.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webapps/swat/source/class/swat/module/netmgr/Fsm.js b/webapps/swat/source/class/swat/module/netmgr/Fsm.js index f8a8953db6..09e8316fef 100644 --- a/webapps/swat/source/class/swat/module/netmgr/Fsm.js +++ b/webapps/swat/source/class/swat/module/netmgr/Fsm.js @@ -61,8 +61,8 @@ qx.Proto.buildFsm = function(module) { "appear" : { - "tree" : - "Transition_Idle_to_AwaitRpcResult_via_tree_appear" + "swat.main.canvas" : + "Transition_Idle_to_AwaitRpcResult_via_canvas_appear" } } }); @@ -71,7 +71,7 @@ qx.Proto.buildFsm = function(module) fsm.replaceState(state, true); var trans = new qx.util.fsm.Transition( - "Transition_Idle_to_AwaitRpcResult_via_tree_appear", + "Transition_Idle_to_AwaitRpcResult_via_canvas_appear", { "nextState" : "State_AwaitRpcResult", |