summaryrefslogtreecommitdiff
path: root/gtk2_ardour/audio_time_axis.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/audio_time_axis.cc')
-rw-r--r--gtk2_ardour/audio_time_axis.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/audio_time_axis.cc b/gtk2_ardour/audio_time_axis.cc
index 0266ff7a0b..9f4f709cfc 100644
--- a/gtk2_ardour/audio_time_axis.cc
+++ b/gtk2_ardour/audio_time_axis.cc
@@ -201,7 +201,7 @@ AudioTimeAxisView::set_state (const XMLNode& node)
XMLProperty *prop=child_node->property ("shown");
if (prop != 0) {
- if (prop->value() == "yes") {
+ if (string_is_affirmative (prop->value())) {
show_gain_automation = true;
}
}
@@ -212,7 +212,7 @@ AudioTimeAxisView::set_state (const XMLNode& node)
XMLProperty *prop=child_node->property ("shown");
if (prop != 0) {
- if (prop->value() == "yes") {
+ if (string_is_affirmative (prop->value())) {
show_pan_automation = true;
}
}
@@ -388,7 +388,7 @@ AudioTimeAxisView::add_gain_automation_child ()
if ((node = gain_track->get_state_node()) != 0) {
if ((prop = node->property ("shown")) != 0) {
- if (prop->value() == "yes") {
+ if (string_is_affirmative (prop->value())) {
hideit = false;
}
}
@@ -419,7 +419,7 @@ AudioTimeAxisView::add_pan_automation_child ()
if ((node = pan_track->get_state_node()) != 0) {
if ((prop = node->property ("shown")) != 0) {
- if (prop->value() == "yes") {
+ if (string_is_affirmative (prop->value())) {
hideit = false;
}
}