summaryrefslogtreecommitdiffstats
path: root/pure/src/helpers.rs
diff options
context:
space:
mode:
authorLibravatar Richard <richardsoncusto@gmail.com>2022-05-10 09:50:17 -0300
committerLibravatar Richard <richardsoncusto@gmail.com>2022-05-10 09:50:17 -0300
commitb440df9afbb2b63717e84d209a0995ada0e72e6d (patch)
tree80b0a55ff3834647a6527d8856632e79d8352789 /pure/src/helpers.rs
parent27fdc707562d4e229f07ed9496ed5d64f4e108bc (diff)
parentd4ed8afa1ed15486144dc7afee52c09e044a92e0 (diff)
downloadiced-b440df9afbb2b63717e84d209a0995ada0e72e6d.tar.gz
iced-b440df9afbb2b63717e84d209a0995ada0e72e6d.tar.bz2
iced-b440df9afbb2b63717e84d209a0995ada0e72e6d.zip
Merge branch 'master' into dev/system-information
Diffstat (limited to '')
-rw-r--r--pure/src/helpers.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/pure/src/helpers.rs b/pure/src/helpers.rs
index 2c4a37be..746b807d 100644
--- a/pure/src/helpers.rs
+++ b/pure/src/helpers.rs
@@ -202,7 +202,7 @@ pub fn horizontal_rule<'a>(height: u16) -> widget::Rule<'a> {
///
/// [`Rule`]: widget::Rule
pub fn vertical_rule<'a>(width: u16) -> widget::Rule<'a> {
- widget::Rule::horizontal(width)
+ widget::Rule::vertical(width)
}
/// Creates a new [`ProgressBar`].