We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7bba7e commit 747af72Copy full SHA for 747af72
1 file changed
editor/src/plugins/absm/mod.rs
@@ -464,6 +464,22 @@ impl AbsmEditor {
464
} else {
465
self.clear(ui);
466
}
467
+
468
+ let name = if let Ok(absm) = graph.try_get(selection.absm_node_handle) {
469
+ if machine.is_some() {
470
+ format!(
471
+ "Animation Editor - {}({}:{})",
472
+ absm.name(),
473
+ selection.absm_node_handle.index(),
474
+ selection.absm_node_handle.generation()
475
+ )
476
+ } else {
477
+ "No ABSM Selected".to_string()
478
+ }
479
480
481
+ };
482
+ ui.send_sync(self.window, WindowMessage::Title(WindowTitle::text(name)))
483
484
485
pub fn clear(&mut self, ui: &UserInterface) {
0 commit comments