diff options
author | 2021-10-21 18:50:27 +0700 | |
---|---|---|
committer | 2021-10-21 18:50:27 +0700 | |
commit | 7c08c6bd138207b862933ee479752a4f1d18c4f2 (patch) | |
tree | 879d8a6676dfc36171217d9b44b6e111a95392ab /glow | |
parent | b6ae87ae55301d6c15f56e6c7df077aabe6383de (diff) | |
download | iced-7c08c6bd138207b862933ee479752a4f1d18c4f2.tar.gz iced-7c08c6bd138207b862933ee479752a4f1d18c4f2.tar.bz2 iced-7c08c6bd138207b862933ee479752a4f1d18c4f2.zip |
Remove `Renderer` trait for `Checkbox`
Diffstat (limited to 'glow')
-rw-r--r-- | glow/src/widget/checkbox.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glow/src/widget/checkbox.rs b/glow/src/widget/checkbox.rs index d27d77cc..9fd003d4 100644 --- a/glow/src/widget/checkbox.rs +++ b/glow/src/widget/checkbox.rs @@ -6,4 +6,4 @@ pub use iced_graphics::checkbox::{Style, StyleSheet}; /// A box that can be checked. /// /// This is an alias of an `iced_native` checkbox with an `iced_wgpu::Renderer`. -pub type Checkbox<Message> = iced_native::Checkbox<Message, Renderer>; +pub type Checkbox<'a, Message> = iced_native::Checkbox<'a, Message, Renderer>; |