v1.2.2: text measuring improvements, minor code clean
fixed some clippy warnings, ignored many that I do not care about. also, added demo video and updated koxinga image
This commit is contained in:
@@ -241,9 +241,11 @@ impl WindowLike for Draw {
|
||||
|
||||
impl Draw {
|
||||
pub fn new() -> Self {
|
||||
let mut d: Self = Default::default();
|
||||
d.current_linewidth = 1;
|
||||
d
|
||||
//apparently this is legal. thanks clippy
|
||||
Self {
|
||||
current_linewidth: 1,
|
||||
..Default::default() //no comma here allowed though??
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user