-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Add fill tool support on strokes #4032
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 6 commits
d1612e7
b1d47b8
c5f2a4f
95e6a92
2adac3b
f412eb9
feb6895
e92f543
3754701
7a9cf59
a8b0bae
966c160
8ab03cc
9173e22
855fb9d
129486f
e431d69
c5bec01
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,15 +3,15 @@ mod overlays_message; | |
| mod overlays_message_handler; | ||
| pub mod utility_functions; | ||
| // Native (non‑wasm) | ||
| #[cfg(not(target_family = "wasm"))] | ||
| pub mod utility_types_native; | ||
| #[cfg(not(target_family = "wasm"))] | ||
| pub use utility_types_native as utility_types; | ||
| // #[cfg(not(target_family = "wasm"))] | ||
| // pub mod utility_types_native; | ||
| // #[cfg(not(target_family = "wasm"))] | ||
| // pub use utility_types_native as utility_types; | ||
|
|
||
| // WebAssembly | ||
| #[cfg(target_family = "wasm")] | ||
| // #[cfg(target_family = "wasm")] | ||
| pub mod utility_types_web; | ||
| #[cfg(target_family = "wasm")] | ||
| // #[cfg(target_family = "wasm")] | ||
| pub use utility_types_web as utility_types; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The conditional compilation attributes ( |
||
|
|
||
| #[doc(inline)] | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P2: Pivot and Origin overlay checkboxes are bound to the wrong visibility fields, so the checked state and toggle action are inverted.
Prompt for AI agents