summaryrefslogtreecommitdiff
path: root/libs/widgets
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-07-26 16:44:29 +0200
committerRobin Gareus <robin@gareus.org>2019-07-26 16:44:29 +0200
commit78fc6d66516861e4ff0b98671c04aa182f5a5b6a (patch)
tree5bdb140221b375fd9ced04dd6b99be6f846af796 /libs/widgets
parentb759fb883ea17e87ec533e866916416fa44d9c9e (diff)
Prefix all env variable with "ARDOUR_"
In particular "CONCURRENCY" can be problematic. But in general it's good practice to use a namespace prefix for app-specifics.
Diffstat (limited to 'libs/widgets')
-rw-r--r--libs/widgets/fastmeter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/widgets/fastmeter.cc b/libs/widgets/fastmeter.cc
index a9ecf5dad6..8dc89f07e1 100644
--- a/libs/widgets/fastmeter.cc
+++ b/libs/widgets/fastmeter.cc
@@ -74,7 +74,7 @@ FastMeter::FastMeter (long hold, unsigned long dimen, Orientation o, int len,
last_peak_rect.x = 0;
last_peak_rect.y = 0;
- no_rgba_overlay = ! Glib::getenv("NO_METER_SHADE").empty();
+ no_rgba_overlay = ! Glib::getenv("ARDOUR_NO_METER_SHADE").empty();
_clr[0] = clr0;
_clr[1] = clr1;