1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 13:50:04 -04:00

Fix eprint -> eprintln

This commit is contained in:
Emil Ernerfeldt
2023-11-14 18:36:06 +01:00
parent afe164995b
commit 874556ceb1

View File

@@ -85,7 +85,7 @@ impl Repaint {
}; };
(callback)(info); (callback)(info);
} else { } else {
eprint!( eprintln!(
"request_repaint_callback is not implemented by egui integration! "request_repaint_callback is not implemented by egui integration!
If is your integration you need to call `Context::set_request_repaint_callback`" If is your integration you need to call `Context::set_request_repaint_callback`"
); );