diff options
author | 2022-11-09 18:24:14 +0100 | |
---|---|---|
committer | 2022-11-09 18:24:14 +0100 | |
commit | af6f7945a905a04ae0335fdc295678ff95eff5f9 (patch) | |
tree | d44ac78a6200feb90e0359fa9ff62b24c0c64738 /native/src/widget/rule.rs | |
parent | 8102f96f12e6cb22dd2a23accea2c70490c8c532 (diff) | |
parent | 925b78a75ddf8e37e70babe4dae78a9970a181f0 (diff) | |
download | iced-af6f7945a905a04ae0335fdc295678ff95eff5f9.tar.gz iced-af6f7945a905a04ae0335fdc295678ff95eff5f9.tar.bz2 iced-af6f7945a905a04ae0335fdc295678ff95eff5f9.zip |
Merge pull request #1519 from iced-rs/customizable-theme
Built-in `Theme` customization
Diffstat (limited to 'native/src/widget/rule.rs')
-rw-r--r-- | native/src/widget/rule.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/widget/rule.rs b/native/src/widget/rule.rs index 56f8c80d..e44d8d99 100644 --- a/native/src/widget/rule.rs +++ b/native/src/widget/rule.rs @@ -88,7 +88,7 @@ where _viewport: &Rectangle, ) { let bounds = layout.bounds(); - let style = theme.style(self.style); + let style = theme.appearance(&self.style); let bounds = if self.is_horizontal { let line_y = (bounds.y + (bounds.height / 2.0) |