We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ec28a7 commit 03c3a37Copy full SHA for 03c3a37
1 file changed
src/app.rs
@@ -233,10 +233,8 @@ impl App {
233
self.name = n;
234
};
235
self.plot.update();
236
- if b {
237
- if let Some(w) = &self.plot.renderer {
238
- self.set_title(&w.window);
239
- }
+ if b && let Some(w) = &self.plot.renderer {
+ self.set_title(&w.window);
240
}
241
242
#[cfg(any(feature = "skia", feature = "tiny-skia"))]
0 commit comments