fix clippy warnings

This commit is contained in:
Guillaume Desmottes
2021-02-03 16:18:59 +01:00
committed by Tom A. Wagner
parent 99b2ef274a
commit 5784275d32
4 changed files with 24 additions and 22 deletions

View File

@@ -273,3 +273,9 @@ impl GraphView {
self.queue_draw();
}
}
impl Default for GraphView {
fn default() -> Self {
Self::new()
}
}