Reduce selection corner radius

Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>
This commit is contained in:
Nathan Sobo 2021-03-30 16:57:21 -06:00
parent 3103d28285
commit 4cdce070c4

View File

@ -603,7 +603,7 @@ impl Selection {
}
let mut path = PathBuilder::new();
let corner_radius = 0.25 * self.line_height;
let corner_radius = 0.15 * self.line_height;
let first_line = lines.first().unwrap();
let last_line = lines.last().unwrap();