summaryrefslogtreecommitdiff
path: root/gtk2_ardour/marker.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2018-01-25 08:20:25 -0600
committerBen Loftis <ben@harrisonconsoles.com>2018-01-25 08:20:25 -0600
commit76b7345ab6f3ccaf9e916c6f5d30358b44ff67ea (patch)
tree30d24e742a314bff5bd52f89cc5e5feba0e8479b /gtk2_ardour/marker.cc
parent28e67c897850514e4fa48f76f7aa845b09903e1d (diff)
Add tooltip to markers so they can be found without zooming in.
Diffstat (limited to 'gtk2_ardour/marker.cc')
-rw-r--r--gtk2_ardour/marker.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk2_ardour/marker.cc b/gtk2_ardour/marker.cc
index b578939f7a..29acc70e5d 100644
--- a/gtk2_ardour/marker.cc
+++ b/gtk2_ardour/marker.cc
@@ -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 ();
}