aboutsummaryrefslogtreecommitdiffstats
path: root/src/gui/NodeView.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/NodeView.cpp')
-rw-r--r--src/gui/NodeView.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/NodeView.cpp b/src/gui/NodeView.cpp
index 5aadde1..71852ab 100644
--- a/src/gui/NodeView.cpp
+++ b/src/gui/NodeView.cpp
@@ -102,13 +102,13 @@ NodeView::show_label(bool show)
if (_enter_action) {
Raul::Atom note_number = _enter_action->get(URIs::instance().machina_note_number);
if (note_number.is_valid()) {
- set_name(midi_note_name(note_number.get_int32()));
+ set_label(midi_note_name(note_number.get_int32()).c_str());
return;
}
}
}
- set_name("");
+ set_label("");
}
void