※この現象は8.0.42.0で修正されました。
対象製品とバージョン
Forguncy 8.x
現象
「条件分岐」コマンドの[確認ダイアログ]タブで確認メッセージを表示する際、確認ダイアログ上の「実行ボタン」を素早くダブルクリックすると、「条件分岐」コマンドへ設定していたコマンドが2回実行される場合がある。
回避方法
条件分岐コマンドを実行する直前に、「JavaScriptコードの実行」コマンドで以下のJavaScriptを実行します。
Forguncy.UI.Dialog.prototype.confirm = function () { if (this.disposing === true) { return; } var args = new Forguncy.UI.DialogEventArgs(); this.dispatch("Confirm" /* DialogEvents.Confirm */, args); if (!args.cancel) { this.dispose(); } };
文書種別
不具合
検索キーワード: fgcbug