You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On mobile, upon tapping inside button border but not tapping on text, button click is recognized.
Actual Behavior
On mobile, tapping inside the button border on the empty space within the button is not recognized as a click.
Steps to Reproduce
Load vertical_playground.html.
From Google Chrome menu, select View > Developer > Developer Tools and then select a device of your choice (e.g. iPad Pro).
Select Data category so that "Create Variable" button is visible in the flyout.
Tap inside the "Create Variable" button without tapping on the button text. For instance, tap between the left edge of the button and the start of the text, or tap between the end of the text and the right edge of the button.
Workaround: Tap the button text, and the button will be clicked.
Note: This issue doesn't happen on desktop (or when Developer Tools are not used).
Operating System and Browser
Mac OS 10.11.6 Google Chrome 62.0.3202.62
The text was updated successfully, but these errors were encountered:
* Implement Blockly.Events.filter in linear time
For large App Inventor projects (order 1k+ blocks, 100+ top-level
blocks), the O(n^2) behavior of Blockly.Event.filter was causing
performance issues when rearranging blocks or pasting from the
backpack. This commit provides a linear merge implementation using a
key that uniquely identifies a block so that multiple events targeting
the same block are merged. This change benefits from O(1) amortized
lookup using an object as a key-value store.
* Add event filter unit tests and fix logic bugs
* Update Blockly.Events.filter unit tests
madPO
pushed a commit
to madPO/scratch-blocks
that referenced
this issue
Nov 11, 2017
Expected Behavior
On mobile, upon tapping inside button border but not tapping on text, button click is recognized.
Actual Behavior
On mobile, tapping inside the button border on the empty space within the button is not recognized as a click.
Steps to Reproduce
Workaround: Tap the button text, and the button will be clicked.
Note: This issue doesn't happen on desktop (or when Developer Tools are not used).
Operating System and Browser
Mac OS 10.11.6 Google Chrome 62.0.3202.62
The text was updated successfully, but these errors were encountered: