diff options
author | 2020-08-16 10:10:32 -0500 | |
---|---|---|
committer | 2020-08-22 21:23:44 +0200 | |
commit | 32561bd85c6db0d7e6d9d12c87b87f4b50f1d43f (patch) | |
tree | 150327574c8f50cda3c90413edd8c6ebbb51c40d /examples | |
parent | 8d68c8584ea99d3974571cd92edcb31999ebb8fa (diff) | |
download | iced-32561bd85c6db0d7e6d9d12c87b87f4b50f1d43f.tar.gz iced-32561bd85c6db0d7e6d9d12c87b87f4b50f1d43f.tar.bz2 iced-32561bd85c6db0d7e6d9d12c87b87f4b50f1d43f.zip |
added FillMode enum style for the Rule widget
Diffstat (limited to 'examples')
-rw-r--r-- | examples/styling/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/styling/src/main.rs b/examples/styling/src/main.rs index c969526c..0c2cfc57 100644 --- a/examples/styling/src/main.rs +++ b/examples/styling/src/main.rs @@ -537,7 +537,7 @@ mod style { color: SURFACE, width: 2, radius: 1, - fill_percent: 90, + fill_mode: rule::FillMode::Padded(15), } } } |