diff --git a/o2web/source/x_component_process_ScriptDesigner/$Main/default/css.wcss b/o2web/source/x_component_process_ScriptDesigner/$Main/default/css.wcss index 4af713eb906d963e0cd10cbe8c580fc270e488a8..f4437d0e54570c7737ec1639b38ede439853441c 100644 --- a/o2web/source/x_component_process_ScriptDesigner/$Main/default/css.wcss +++ b/o2web/source/x_component_process_ScriptDesigner/$Main/default/css.wcss @@ -34,7 +34,7 @@ "scriptListAreaSccrollNode": { "margin": "4px", "margin-right": "8px", - "overflow": "hidden", + "overflow": "auto", "background-color": "#FFF", "border-top": "1px solid #999", "border-left": "1px solid #999", @@ -229,4 +229,4 @@ "background": "#FFF", "margin-bottom": "2px" } -} \ No newline at end of file +} diff --git a/o2web/source/x_component_process_ScriptDesigner/Main.js b/o2web/source/x_component_process_ScriptDesigner/Main.js index 5593f4d03c7b8f4c01414f2c327046c8583bcd80..d54da7ffedd97defe40f4aa0c6ae44801fc012cf 100644 --- a/o2web/source/x_component_process_ScriptDesigner/Main.js +++ b/o2web/source/x_component_process_ScriptDesigner/Main.js @@ -172,7 +172,7 @@ MWF.xApplication.process.ScriptDesigner.Main = new Class({ listScriptItem.store("script", script); listScriptItem.addEvents({ - "dblclick": function(e){_self.loadScriptByData(this, e);}, + "click": function(e){_self.loadScriptByData(this, e);}, "mouseover": function(){if (_self.currentListScriptItem!=this) this.setStyles(_self.css.listScriptItem_over);}, "mouseout": function(){if (_self.currentListScriptItem!=this) this.setStyles(_self.css.listScriptItem);} });