Kamil Jarosz
Kamil Jarosz
Fixes https://github.com/ruffle-rs/ruffle/issues/14949. This PR adds support for saving files on web using FileReference. When writing data, a download is triggered with the default file name. Currently, there's no dialog that...
By setting `is_slow = true`, a test may be marked as slow, which means that the duration of its execution is exceptionally long compared to other tests. In order to...
Just fixing a bug I found when writing some tests. Button events are actually handled twofold: 1. `KeyPress` for printable characters is handled on `TextInput`, 2. `KeyPress` for special characters...
Related to https://github.com/ruffle-rs/ruffle/issues/5443. Fixes https://github.com/ruffle-rs/ruffle/issues/15853. This PR implements proper automatic tab ordering that behaves exactly the same as in FP. ## The Behavior of Automatic Tab Ordering The automatic order...
This fixes a bug where the code in the first frame of a movie clip could have been executed after the second frame (so that instructions like stop did not...
This shrinks AVM1's `Object` (from 24 to 16 bytes on x64), and allows future shrinkage of AVM1's `Value` (e.g. from 24 to 16 bytes on x64 after putting all strings...
#### Your system information * System information from steam (`Steam` -> `Help` -> `System Information`) in a [gist](https://gist.github.com/): https://gist.github.com/kjarosh/00bf2ebbc4f5ec423ba2cb60541176be * Have you checked for system updates?: [Yes/No] Yes #### Please...
This patch adds multiple properties and controls to EditText tab. This includes for instance: * border, border color, * background, background color, * editable, selectable, word wrap properties, * autosize,...
This patch ensures that the selection in EditText is rendered even when filters are present (so that cache as bitmap is enabled). This is done by invalidating the cached bitmap...
This PR allows selecting text by pressing and dragging the mouse. Related to https://github.com/ruffle-rs/ruffle/issues/1891, https://github.com/ruffle-rs/ruffle/issues/14996.