summaryrefslogtreecommitdiffstats
path: root/native/src/widget/checkbox.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-11-24 10:48:29 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-11-24 10:48:29 +0100
commit47196c9007d12d3b3e0036ffabe3bf6d14ff4523 (patch)
treea199cf8d2caaf6aa60e48e93d6dd0688969d43b0 /native/src/widget/checkbox.rs
parent7760618fb112074bc40b148944521f312152012a (diff)
downloadiced-47196c9007d12d3b3e0036ffabe3bf6d14ff4523.tar.gz
iced-47196c9007d12d3b3e0036ffabe3bf6d14ff4523.tar.bz2
iced-47196c9007d12d3b3e0036ffabe3bf6d14ff4523.zip
Display widget images in documentation
Diffstat (limited to '')
-rw-r--r--native/src/widget/checkbox.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/widget/checkbox.rs b/native/src/widget/checkbox.rs
index 9251d9a0..9563291c 100644
--- a/native/src/widget/checkbox.rs
+++ b/native/src/widget/checkbox.rs
@@ -24,7 +24,7 @@ use crate::{
/// Checkbox::new(is_checked, "Toggle me!", Message::CheckboxToggled);
/// ```
///
-/// ![Checkbox drawn by Coffee's renderer](https://github.com/hecrj/coffee/blob/bda9818f823dfcb8a7ad0ff4940b4d4b387b5208/images/ui/checkbox.png?raw=true)
+/// ![Checkbox drawn by `iced_wgpu`](https://github.com/hecrj/iced/blob/7760618fb112074bc40b148944521f312152012a/docs/images/checkbox.png?raw=true)
#[allow(missing_debug_implementations)]
pub struct Checkbox<Message> {
is_checked: bool,