make frame/trim handles transparent for now.

This is a new GUI feature that will not be completed for the 3.6 release, so just hide them.
This commit is contained in:
Paul Davis
2014-04-14 04:46:24 -04:00
parent 5764970709
commit 55bfe10fa6

View File

@@ -907,6 +907,13 @@ TimeAxisViewItem::set_frame_gradient ()
void
TimeAxisViewItem::set_trim_handle_colors()
{
#if 1
/* Leave them transparent for now */
if (frame_handle_start) {
frame_handle_start->set_fill_color (0x00000000);
frame_handle_end->set_fill_color (0x00000000);
}
#else
if (frame_handle_start) {
if (position_locked) {
frame_handle_start->set_fill_color (ARDOUR_UI::config()->get_canvasvar_TrimHandleLocked());
@@ -916,6 +923,7 @@ TimeAxisViewItem::set_trim_handle_colors()
frame_handle_end->set_fill_color (ARDOUR_UI::config()->get_canvasvar_TrimHandle());
}
}
#endif
}
bool