diff options
author | 2020-06-08 11:14:40 +0300 | |
---|---|---|
committer | 2020-06-08 10:14:40 +0200 | |
commit | 9e01adc964a5b19c5f78877cbeeb331c722b1ca7 (patch) | |
tree | 94843191abda6215b6b9ce9b803f99e818c6c68f /glow | |
parent | ca6ff874a18d1027dbbcdc6059ccbc58dd2f2680 (diff) | |
download | iced-9e01adc964a5b19c5f78877cbeeb331c722b1ca7.tar.gz iced-9e01adc964a5b19c5f78877cbeeb331c722b1ca7.tar.bz2 iced-9e01adc964a5b19c5f78877cbeeb331c722b1ca7.zip |
Replace leftover docs in progress bar module (#396)
* Replace leftover docs in progress bar module
* Fix consistency of `ProgressBar` docs
Co-authored-by: Héctor Ramón Jiménez <hector0193@gmail.com>
Diffstat (limited to 'glow')
-rw-r--r-- | glow/src/widget/progress_bar.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/glow/src/widget/progress_bar.rs b/glow/src/widget/progress_bar.rs index 5782103c..a636a3a6 100644 --- a/glow/src/widget/progress_bar.rs +++ b/glow/src/widget/progress_bar.rs @@ -1,9 +1,9 @@ -//! Allow your users to perform actions by pressing a button. +//! Allow your users to visually track the progress of a computation. //! -//! A [`Button`] has some local [`State`]. +//! A [`ProgressBar`] has a range of possible values and a current value, +//! as well as a length, height and style. //! -//! [`Button`]: type.Button.html -//! [`State`]: struct.State.html +//! [`ProgressBar`]: type.ProgressBar.html use crate::Renderer; pub use iced_graphics::progress_bar::{Style, StyleSheet}; |