#98413: "Move the grey stone to 4 in clockwise column"
どういった内容ですか?
どうしましたか?以下から選んでください
どうしましたか?以下から選んでください
同一内容の報告がないか、ご確認ください
もしそうなら、このレポートに投票してください。投票の多いレポートから調査されます!
# | Status | Votes | Game | Type | Title | Last update |
---|
詳細
-
• もしあれば、画面に表示されたエラーメッセージをコピー&ペーストしてください
#12
-
• 何をしたいか、何をしたか、何が起きたかを説明してください
Black player wants to move the grey stone of the 3 column to the 4 and he cannot do it
• あなたのブラウザは何ですか?
Google Chrome v116
-
• 何を意味するのか、簡単に理解できるようにあなたの提案を正確かつ簡潔に説明してください。
#12
• あなたのブラウザは何ですか?
Google Chrome v116
-
• ブロックされたときの表示は何でしたか(空のスクリーン?一部のみのゲームインターフェイス?エラーメッセージ?)
#12
• あなたのブラウザは何ですか?
Google Chrome v116
-
• BGAで正しく実装されていないルールはどの部分ですか?
#12
-
• ルールの間違いはゲームのリプレイで確認できますか?そうであれば、行動番号は何番ですか?
Black player wants to move the grey stone of the 3 column to the 4 and he cannot do it
• あなたのブラウザは何ですか?
Google Chrome v116
-
• やりたかったゲームアクションは何ですか?
#12
-
• このゲームアクションを引き起こす為に何を試みましたか?
Black player wants to move the grey stone of the 3 column to the 4 and he cannot do it
-
• これを行おうとしたときに何が起こりましたか?(エラーメッセージ、ステータスバーメッセージ、他)
• あなたのブラウザは何ですか?
Google Chrome v116
-
• どの段階でこの問題が起こりましたか?(画面の指示はどうなっていましたか)
#12
-
• ゲームアクションを行おうとしたとき、何が起こりましたか?(エラーメッセージ、ステータスバーメッセージ、他)
Black player wants to move the grey stone of the 3 column to the 4 and he cannot do it
• あなたのブラウザは何ですか?
Google Chrome v116
-
• 表示の問題を説明してください もしこのバグのスクリーンショットがあれば(素晴らしい!)、Imgur.com等を使ってアップロードし、リンクをコピー&ペーストしてください。
#12
• あなたのブラウザは何ですか?
Google Chrome v116
-
• 何を意味するのか、簡単に理解できるようにあなたの提案を正確かつ簡潔に説明してください。
#12
• あなたのブラウザは何ですか?
Google Chrome v116
報告履歴
The gray stone is highlighted but cannot be clicked.
(#modal has a blink so popup blocks the click events)
This occurs only when window width is not wide enough.
1. `mouseover` and `mouseleave` events are used for toggling hint.
2. In touch device, those two events are triggered differently than the mouse. Genrally it triggered at sametime.
3. To ensure the popup elm is attached to the body, showHint() uses setTimeout().
4. Once Hint popup is displayed even once, it caches the last displayed position.
5. Due to the cache, popup may displayed exactly over the touched place.
6. Because of popup, mouseleave event is triggered on touch device. So flag is turned off during the setTimeout.
7. Since flag is turned off, showHint() cannot find the popup elm and halt the furthr process.
-----
Fixed as below:
1. Clear the position cache in an appropriate timing.
2. Display hint more flexibly (not only right side, left side if the remaining pos is not enough). Adjusted the hint size.
報告に書き加える
- 他のテーブルID/行動ID
- F5キー(ページの再読込)で問題は解決されましたか?
- 問題は何回も起こりましたか?毎回 起こりますか?ランダムに起きますか?
- もしこのバグのスクリーンショットがあれば(素晴らしい!)、Imgur.com等を使ってアップロードし、リンクをコピー&ペーストしてください。