Huon Imberger
Huon Imberger
There are two problems when using `quill.format("mention", ...)`: 1. It doesn't replace the selected text, but instead inserts the mention after the selection 2. I get the console error `TypeError:...
**Describe the bug** Not sure whether this should be a bug report or feature request, but the form builder is unusable with a keyboard. This doesn't just apply to the...
With comfy 0.4.0, using the following code, nothing is printed when pressing spacebar. This bug doesn't exist in 0.3.1. ```rust use comfy::*; simple_game!("Bug Repro", setup, update); fn setup(_c: &mut EngineContext)...
To be honest I'm not sure whether this is the correct way to fix this, but it seems that #101 is caused by https://github.com/darthdeus/comfy/commit/cd52f9f3db6b2e5db260ad35e4a59894e90ef727 which moved the keyboard event handling...
When adding the egui plugin with multipass enabled, the app panics (both egui examples). I.e. ```rust EguiPlugin { enable_multipass_for_primary_context: true, } ``` Error: ``` thread 'Compute Task Pool (4)' panicked...
**Describe the bug** Using `moment-timezone`, this code will parse as UTC, then convert to the default timezone, which is what I would expect: ```javascript moment.tz.setDefault("Australia/Melbourne"); const dt = moment("2025-10-24T05:00:00Z"); console.log(dt.toISOString());...