1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-21 22:12:58 +02:00

VZoom cfg defaults different for Audacity and DA.

VZooming remains on by default in Audacity itself.
Also kGuard (the gurard zone in the VRuler) reduced from 8 pixels to 5pixels
following feedback from Steve.
This commit is contained in:
James Crook
2017-12-12 21:06:09 +00:00
parent 516af71782
commit 3379b4e499
4 changed files with 16 additions and 6 deletions

View File

@@ -57,6 +57,16 @@
// DA: Enables dark audacity theme and customisations.
//#define EXPERIMENTAL_DA
// These CFG macros allow easy distinction between Audacity and DA defaults.
#ifdef EXPERIMENTAL_DA
#define CFG_A( x )
#define CFG_DA( x ) x
#else
#define CFG_A( x ) x
#define CFG_DA( x )
#endif
// Define this so that sync-lock tiles shine through spectrogram.
// The spectrogram pastes a bitmap over the tiles.
// This makes it use alpha blending, most transparent where least intense.