Merge pull request #994 from BillyDM/master

tweak default rule style
This commit is contained in:
Héctor Ramón 2021-08-13 19:47:32 +07:00 committed by GitHub
commit 187413b452
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -82,10 +82,10 @@ pub struct Style {
impl std::default::Default for Style {
fn default() -> Self {
Style {
color: [0.6, 0.6, 0.6, 0.51].into(),
color: [0.6, 0.6, 0.6, 0.6].into(),
width: 1,
radius: 0.0,
fill_mode: FillMode::Percent(90.0),
fill_mode: FillMode::Full,
}
}
}