summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/route_group.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-07-08 13:34:43 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-07-08 13:34:52 -0400
commit1228faf2cfa3b32e4267f8418884cf2d77b89be6 (patch)
treedffa55be59cd0a98410612619d947d66ac8c9fc1 /libs/ardour/ardour/route_group.h
parentb382ad8b22d308629900ce2e7a9556bd57547861 (diff)
fix thinko
Diffstat (limited to 'libs/ardour/ardour/route_group.h')
-rw-r--r--libs/ardour/ardour/route_group.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/ardour/route_group.h b/libs/ardour/ardour/route_group.h
index 4712afbef3..1285d3bc52 100644
--- a/libs/ardour/ardour/route_group.h
+++ b/libs/ardour/ardour/route_group.h
@@ -76,7 +76,7 @@ class LIBARDOUR_API RouteGroup : public SessionObject
bool is_active () const { return _active.val(); }
bool is_relative () const { return _relative.val(); }
bool is_hidden () const { return _hidden.val(); }
- bool is_gain () const { return _gain.val() && _group_master_number.val() > 0; }
+ bool is_gain () const { return _gain.val() && _group_master_number.val() <= 0; }
bool is_mute () const { return _mute.val(); }
bool is_solo () const { return _solo.val(); }
bool is_recenable () const { return _recenable.val(); }