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

Rename ui.advance_cursor to ui.add_space

This commit is contained in:
Emil Ernerfeldt
2021-04-02 10:08:29 +02:00
parent d848b2a664
commit 4b9db0cc55
9 changed files with 36 additions and 28 deletions

View File

@@ -327,7 +327,7 @@ impl BackendPanel {
These are emitted when you switch selected widget with tab, \
and can be hooked up to a screen reader on supported platforms.",
);
ui.advance_cursor(8.0);
ui.add_space(8.0);
for event in &self.output_event_history {
ui.label(format!("{:?}", event));
}