mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-21 14:16:31 +01:00
ruler markers (i.e. loop) never ever show their name
This commit is contained in:
parent
6a5023c736
commit
c727b1022d
2 changed files with 7 additions and 0 deletions
|
|
@ -80,6 +80,12 @@ RulerMarker::use_color ()
|
|||
_name_background->set_pattern (Cairo::RefPtr<Cairo::SurfacePattern> ());
|
||||
}
|
||||
|
||||
void
|
||||
RulerMarker::setup_name_display ()
|
||||
{
|
||||
/* we never show our name, so do nothing */
|
||||
}
|
||||
|
||||
RangeMarker::RangeMarker (ARDOUR::Location* l, PublicEditor& editor, ArdourCanvas::Container& parent, double height, guint32 rgba, const std::string& text,
|
||||
framepos_t start, framepos_t end)
|
||||
: Marker (l, editor, parent, height, rgba, text, Range, start, true)
|
||||
|
|
|
|||
|
|
@ -189,6 +189,7 @@ class RulerMarker: public RangeMarker
|
|||
framepos_t start, framepos_t end);
|
||||
|
||||
void use_color ();
|
||||
void setup_name_display ();
|
||||
};
|
||||
|
||||
class TempoMarker : public Marker
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue