-
Notifications
You must be signed in to change notification settings - Fork 140
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
virtual_stack
within a v_stack
get's into an infinite loop
#246
Comments
331 taffy::compute::compute_node_layout::h45313723ba884378 This is the a stack trace of the infinite loop as far as I can tell |
virtual_list
within a v_stack
get's into an infinite loopvirtual_stack
within a v_stack
get's into an infinite loop
Replacing |
You can disable the default widget styling.
|
Can you do that on a per-widget level? |
You can do style unset for specific properties s.background(StyleValue::Unset) but you need to do that for hover/active/etc. individually |
.class(widgets::TooltipClass, |s| {
s.background(StyleValue::Unset)
.hover(|s| s.background(StyleValue::Unset)
}) |
@dominikwilkowski You could also use |
If you use the widget_gallery example and change the
list.rs
file to the below code you can reproduce this issue.Edit: changed code to work after #248
Edit 2: changed code to work after #251
The text was updated successfully, but these errors were encountered: