fix: add separator to widen logs scroll area

This commit is contained in:
əlemi 2022-06-14 23:48:44 +02:00
parent 6e63ca0411
commit 004a0c2b99
No known key found for this signature in database
GPG key ID: BBCBFE5D7244634E

View file

@ -109,9 +109,11 @@ impl eframe::App for App {
.diagnostics
.read()
.expect("Diagnostics RwLock poisoned");
ui.separator();
for msg in msgs.iter() {
ui.label(msg);
}
ui.separator();
});
});
});