We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75c0aa6 commit 1f628e5Copy full SHA for 1f628e5
src/app.rs
@@ -290,7 +290,7 @@ impl LogViewerApp {
290
if ui.button("Clear Error Status").clicked() {
291
self.loading_status = LoadingStatus::NotInProgress;
292
}
293
- ui.label(msg);
+ ui.colored_label(ui.visuals().error_fg_color, msg);
294
295
LoadingStatus::Success(data) => {
296
self.loading_status = match Data::try_from(&data[..]) {
0 commit comments