mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 13:15:21 +00:00
dont allow the user to bring up the command desc if there is none (#753)
* dont allow the user to bring up the command desc if there is none * obey our god lints --------- Co-authored-by: nyx <nnyyxxxx@users.noreply.github.com>
This commit is contained in:
parent
52565e5ea1
commit
72dfb29969
|
@ -704,8 +704,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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user