summaryrefslogtreecommitdiffstats
path: root/glow
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-06-08 18:33:36 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-06-08 18:33:36 +0200
commit8493ccec7fd4639aef9e02ad3519a7a3707cd488 (patch)
tree528fc7245a21fc5f362cca2bec609e8e9aaed4fb /glow
parent4dc5bffdfbfb09a017f35c12b484301fcf044876 (diff)
parentdcc4bb77e942f8550b0d7ee08fa5a2882fd22ecd (diff)
downloadiced-8493ccec7fd4639aef9e02ad3519a7a3707cd488.tar.gz
iced-8493ccec7fd4639aef9e02ad3519a7a3707cd488.tar.bz2
iced-8493ccec7fd4639aef9e02ad3519a7a3707cd488.zip
Merge branch 'intuitive-pane-grid-resize' into feature/pane-grid-titlebar
Diffstat (limited to 'glow')
-rw-r--r--glow/src/widget/progress_bar.rs8
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};