diff options
| author | Polesznyák Márk <contact@pml68.dev> | 2026-02-03 23:59:14 +0100 |
|---|---|---|
| committer | Polesznyák Márk <contact@pml68.dev> | 2026-02-03 23:59:14 +0100 |
| commit | a60c7bb059f8ec2f84a43ec5501754a89980c604 (patch) | |
| tree | 1ee70f746f3796d85f82e60a43a6c15dd725229a /src/progress_bar.rs | |
| parent | chore: bump MSRV to match iced's (diff) | |
| download | iced_material-a60c7bb059f8ec2f84a43ec5501754a89980c604.tar.gz | |
refactor: increase border radius of rounded widgets just in case
Diffstat (limited to '')
| -rw-r--r-- | src/progress_bar.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/progress_bar.rs b/src/progress_bar.rs index 5e079ff..8e99114 100644 --- a/src/progress_bar.rs +++ b/src/progress_bar.rs @@ -19,6 +19,6 @@ pub fn default(theme: &Theme) -> Style { Style { background: Background::Color(theme.colors().secondary.container), bar: Background::Color(theme.colors().primary.color), - border: border::rounded(400), + border: border::rounded(9999), } } |
