diff --git a/crates/bevy_editor_pls/src/controls.rs b/crates/bevy_editor_pls/src/controls.rs index 01f9429..d3b0f73 100644 --- a/crates/bevy_editor_pls/src/controls.rs +++ b/crates/bevy_editor_pls/src/controls.rs @@ -397,7 +397,7 @@ impl EditorWindow for ControlsWindow { ui.label(egui::RichText::new(action.to_string()).strong()); let bindings = controls.get(action); for binding in bindings { - ui.add(egui::Label::new(format!("{}", binding)).wrap(false)); + ui.add(egui::Label::new(format!("{}", binding)).extend()); } } }