mirror of
https://github.com/emilk/egui.git
synced 2026-08-30 05:10:03 -04:00
Fix typos (#2866)
* Fix typos in comments * Fix typos in demo texts * Fix typos in code names * Fix typos in cargos * Fix typos in changelogs
This commit is contained in:
@@ -43,9 +43,9 @@ pub fn adjust_colors(shape: &mut Shape, adjust_color: &impl Fn(&mut Color32)) {
|
||||
adjust_color(&mut v.color);
|
||||
}
|
||||
}
|
||||
Shape::QuadraticBezier(quatratic) => {
|
||||
adjust_color(&mut quatratic.fill);
|
||||
adjust_color(&mut quatratic.stroke.color);
|
||||
Shape::QuadraticBezier(quadratic) => {
|
||||
adjust_color(&mut quadratic.fill);
|
||||
adjust_color(&mut quadratic.stroke.color);
|
||||
}
|
||||
Shape::CubicBezier(bezier) => {
|
||||
adjust_color(&mut bezier.fill);
|
||||
|
||||
Reference in New Issue
Block a user