Add tooltip to markers so they can be found without zooming in.

This commit is contained in:
Ben Loftis 2018-01-25 08:20:25 -06:00
parent 28e67c8978
commit 76b7345ab6
1 changed files with 4 additions and 0 deletions

View File

@ -388,6 +388,10 @@ ArdourMarker::set_name (const string& new_name)
{
_name = new_name;
mark->set_tooltip(new_name);
_name_background->set_tooltip(new_name);
_name_item->set_tooltip(new_name);
setup_name_display ();
}