Varphone Wong
Varphone Wong
How to repreproduce: 1. Run the `egui_demo_app` example in debug mode. 2. Click the `Panels` button in the demos panel. 3. You can see the following stack backtrace. ```log Running...
## Summary This PR modifies `ScrollArea` and `Plot` to disable their interactions when the UI is disabled. ## Changes - Interaction with `ScrollArea` in `egui` is disabled when the UI...
## Summary This PR introduces a new configuration option `reduce_texture_memory` in `egui`. ## Changes - Added `reduce_texture_memory` option in `egui`. When set to `true`, `egui` will discard the loaded image...
## Summary This PR introduces several new features related to drawing and plotting arcs and pies in the `egui` ecosystem. ## Changes - `epaint`: Introduced `ArcPieShape`, a new shape that...
Introduced `crop` parameter in `image` for selective display of image portions This PR introduces a new `crop` parameter in the `image` function. This allows users to selectively display portions of...
In this Pull Request (PR), we have introduced global environment variables to the root package of the workspace. The following environment variables are added: - `CARGO_MAKE_WORKSPACE_PACKAGE_NAME` - `CARGO_MAKE_WORKSPACE_PACKAGE_VERSION` - `CARGO_MAKE_WORKSPACE_PACKAGE_DESCRIPTION`...
This PR introduces a new feature for C/C++ flags, primarily to support the compilation of mixed C/C++ code. Sometimes we use both C and C++ languages in a single project....
## Summary This PR introduces several new features related to drawing arcs and pies in the `egui` ecosystem. ## Changes - `epaint`: Introduce `ArcPieShape` for Simplified Arc and Pie Rendering....
Two new targets have been added with Windows 7 as their baseline: x86_64-win7-windows-msvc and i686-win7-windows-msvc. They are starting as Tier 3 targets, meaning that the Rust codebase has support for...
## Support Negative `desired_width` in TextEdit ### Summary This PR adds support for negative values in `TextEdit::desired_width()`, allowing developers to specify width relative to available space by subtraction. ### Changes...