mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 16:46:35 +01:00
Assume axis views with no set visible property are visible.
Fixes #4197. git-svn-id: svn://localhost/ardour2/branches/3.0@9905 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
82e4573227
commit
2e113872de
1 changed files with 2 additions and 1 deletions
|
|
@ -106,7 +106,8 @@ AxisView::gui_property (const string& property_name) const
|
||||||
bool
|
bool
|
||||||
AxisView::marked_for_display () const
|
AxisView::marked_for_display () const
|
||||||
{
|
{
|
||||||
return string_is_affirmative (gui_property ("visible"));
|
string const v = gui_property ("visible");
|
||||||
|
return (v == "" || string_is_affirmative (v));
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue