From c8151033bf5ef8125495dccf6900dac8d82057bb Mon Sep 17 00:00:00 2001 From: Rafal Szczesniak Date: Wed, 18 Apr 2007 22:16:34 +0000 Subject: r22346: Fix small mistake - after sending rpc request we should go to await rpc result state instead of idle. rafal (This used to be commit 00098b6d554d54c5a13b5a58a8b0372239c4c985) --- webapps/swat/source/class/swat/module/netmgr/Fsm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'webapps/swat') diff --git a/webapps/swat/source/class/swat/module/netmgr/Fsm.js b/webapps/swat/source/class/swat/module/netmgr/Fsm.js index 56cc244912..70f84904ef 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) { -- cgit