From 00098b6d554d54c5a13b5a58a8b0372239c4c985 Mon Sep 17 00:00:00 2001 From: Rafal Szczesniak Date: Wed, 18 Apr 2007 22:16:34 +0000 Subject: [PATCH] r22346: Fix small mistake - after sending rpc request we should go to await rpc result state instead of idle. rafal --- webapps/swat/source/class/swat/module/netmgr/Fsm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapps/swat/source/class/swat/module/netmgr/Fsm.js b/webapps/swat/source/class/swat/module/netmgr/Fsm.js index 56cc244912b..70f84904ef7 100644 --- a/webapps/swat/source/class/swat/module/netmgr/Fsm.js +++ b/webapps/swat/source/class/swat/module/netmgr/Fsm.js @@ -120,7 +120,7 @@ qx.Proto.buildFsm = function(module) var trans = new qx.util.fsm.Transition( "Transition_Idle_to_Idle_via_tree_selection_changed", { - "nextState" : "State_Idle", + "nextState" : "State_AwaitRpcResult", "ontransition" : function(fsm, event) { -- 2.11.4.GIT