summaryrefslogtreecommitdiffstats
path: root/glow
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2021-10-28 17:36:36 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2021-10-28 18:04:27 +0700
commite42e1e2f57ddb455ceff0017e215ddacca978d37 (patch)
tree5052541cfab8ba64c9c1aa8d0d09a2b4b3540126 /glow
parentbc32199e39ee3d42b0d71d9082d56b368e401534 (diff)
downloadiced-e42e1e2f57ddb455ceff0017e215ddacca978d37.tar.gz
iced-e42e1e2f57ddb455ceff0017e215ddacca978d37.tar.bz2
iced-e42e1e2f57ddb455ceff0017e215ddacca978d37.zip
Implement `Widget::draw` for `ProgressBar`
Diffstat (limited to 'glow')
-rw-r--r--glow/src/widget/progress_bar.rs9
1 files changed, 1 insertions, 8 deletions
diff --git a/glow/src/widget/progress_bar.rs b/glow/src/widget/progress_bar.rs
index 45a25d00..413e6fb7 100644
--- a/glow/src/widget/progress_bar.rs
+++ b/glow/src/widget/progress_bar.rs
@@ -2,12 +2,5 @@
//!
//! A [`ProgressBar`] has a range of possible values and a current value,
//! as well as a length, height and style.
-use crate::Renderer;
-pub use iced_graphics::progress_bar::{Style, StyleSheet};
-
-/// A bar that displays progress.
-///
-/// This is an alias of an `iced_native` progress bar with an
-/// `iced_wgpu::Renderer`.
-pub type ProgressBar = iced_native::ProgressBar<Renderer>;
+pub use iced_graphics::progress_bar::*;