From 83d47f57c087e4a9e1dcd3155adfcbb6fd691af1 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 3 Nov 2011 16:52:53 +0000 Subject: [PATCH] Fix the fix to #4431; make overrides to visibility actually work. git-svn-id: svn://localhost/ardour2/branches/3.0@10426 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/visibility_group.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/visibility_group.cc b/gtk2_ardour/visibility_group.cc index 69afed9814..a7098f57d6 100644 --- a/gtk2_ardour/visibility_group.cc +++ b/gtk2_ardour/visibility_group.cc @@ -95,7 +95,7 @@ VisibilityGroup::should_actually_be_visible (Member const & m) const if (m.override) { boost::optional o = m.override (); if (o) { - return o; + return o.get (); } }