Qingtian

Results 166 comments of Qingtian

> IIRC it was introduced in an attempt to fix something else, so must be problematic. This one: #3029

`on-drawing` and `on-ime` and `on-scroll` are experimental.

> Install Red (Note: For Windows user, need to run red.exe --cli) This is a step in `Quick Start`. It is for the user who haven't set `"red.redPath"`. So you...

That's weird. It works fine on my system. If I remove one double quote, it doesn't work anymore. My VSCode version: ``` Version: 1.52.1 (user setup) Commit: ea3859d4ba2f3e577a159bc91e3074c5d85c0523 Date: 2020-12-16T16:34:46.910Z...

`root` has never been exported in libRedRT. There is a fix on GTK branch: https://github.com/red/red/blob/GTK/system/utils/libRedRT-exports.r#L423

It looks like a limitation of the `PrintWindow` API on Windows. On macOS, the `camera` face updates its `/image` facet periodically. You can access `/image` facet to get the latest...

It should work now on Windows on commit 535cc3dd05f0be9bb87fb034c49acba9f2d3e493. ``` view win: layout [ title "Red Camera" origin 10x10 space 10x10 cam: camera 1x1 ;--non visible camera just to get...

@hiiamboris Works on `base` face now.

The length of the bitset should be taken into account. ``` >> c1 == make bitset! #{FFFF} ;-- "11111111.11111111" >> c2 == make bitset! [not #{7E}] ;-- "10000001" >> length?...

> Your test doesn't show it, but I now think what happens is face gets locked to enable dragging. So `away?` gets generated once LMB is up. So this is...