This commit is contained in:
nyx 2024-10-25 16:08:57 +02:00 committed by GitHub
commit 347e427213
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -668,8 +668,10 @@ impl AppState {
fn enable_description(&mut self) { fn enable_description(&mut self) {
if let Some(command_description) = self.get_selected_description() { if let Some(command_description) = self.get_selected_description() {
let description = FloatingText::new(command_description, "Command Description"); if !command_description.is_empty() {
self.spawn_float(description, 80, 80); let description = FloatingText::new(command_description, "Command Description");
self.spawn_float(description, 80, 80);
}
} }
} }