rustbasic

Results 69 issues of rustbasic

This is recommended by `rust-analyzer` It might be a good idea to fix this to appease `rust-analyzer`.

Fix: IME-related processing when focus is lost in IME enabled state. Fix: Handling `state.ime_enabled` in multiple `TextEdit`. Fix: A symptom of characters being copied when there are multiple TextEdits. *...

Fix: `scroll_with_delta()` for `ScrollArea::vertical()` and `ScrollArea::horizontal()` We need to do this in order for `ScrollArea::vertical()` and `ScrollArea::horizontal()` to work even where they are divided or nested. Pull requests : *...

Function : Returns the `FontId` corresponding to the given `TextStyle` Before : hard ``` let font_id = TextStyle::Button.resolve(ui.style()); ``` After : easy ``` let font_id = ui.text_style_font_id(&TextStyle::Button); ``` I'm not...

**Issue:** When a `ScrollArea` is nested with both Horizontal and Vertical scrolling, the `outer_rect` can become very large due to the content, or when the content is moved. This can...

Application of `forget` to the frame of `gif`. It is currently temporarily fixed at '0..128'. Next, someone need to add a part to find the exact number of frames.

Improved `filter` in `FontBook` Issues: `*filter == chr.to_string()` doesn't seem to make sense.

Apply `TextWrapMode::Extend` in `TextEdit` * Closes #4837 I'm not sure if this is the correct approach.

**IME visibility improvement and visible selection** I have made the IME indicator visible, and I have improved it to the best of our ability so far. However, we still need...

Fix: The viewport stops working when the program is minimized. **Issue :** The viewport stops working when the program is minimized. * Related #3985 * Closes #3972 * Closes #4772...