1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 16:10:06 +02:00

Remove flags from Experimental.h not used anywhere else

This commit is contained in:
Paul Licameli 2020-06-19 21:42:49 -04:00
parent b45882e8a0
commit 83efa5a0df

View File

@ -60,16 +60,6 @@
// DA: Enables dark audacity theme and customisations. // DA: Enables dark audacity theme and customisations.
//#define EXPERIMENTAL_DA //#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. // Define this so that sync-lock tiles shine through spectrogram.
// The spectrogram pastes a bitmap over the tiles. // The spectrogram pastes a bitmap over the tiles.
// This makes it use alpha blending, most transparent where least intense. // This makes it use alpha blending, most transparent where least intense.
@ -153,10 +143,6 @@
//#define EXPERIMENTAL_NOTEBOOK //#define EXPERIMENTAL_NOTEBOOK
#ifdef EXPERIMENTAL_NYQUIST_INSPECTOR
#include "NyquistAdapter.h"
#endif
#if USE_PORTMIXER #if USE_PORTMIXER
//Automatically tries to find an acceptable input volume //Automatically tries to find an acceptable input volume
//#define EXPERIMENTAL_AUTOMATED_INPUT_LEVEL_ADJUSTMENT //#define EXPERIMENTAL_AUTOMATED_INPUT_LEVEL_ADJUSTMENT
@ -188,12 +174,9 @@
// Support for scrubbing in the AudioIO engine, without calls to it // Support for scrubbing in the AudioIO engine, without calls to it
#define EXPERIMENTAL_SCRUBBING_SUPPORT #define EXPERIMENTAL_SCRUBBING_SUPPORT
#ifdef EXPERIMENTAL_SCRUBBING_SUPPORT #ifdef EXPERIMENTAL_SCRUBBING_SUPPORT
// The following enable parts of the scrubbing user interface. // The following enables parts of the scrubbing user interface.
#define EXPERIMENTAL_SCRUBBING_BASIC
#ifdef EXPERIMENTAL_SCRUBBING_BASIC
#define EXPERIMENTAL_SCRUBBING_SCROLL_WHEEL #define EXPERIMENTAL_SCRUBBING_SCROLL_WHEEL
#endif #endif
#endif
// Paul Licameli (PRL) 24 May 2015 // Paul Licameli (PRL) 24 May 2015
// Allow scrolling up to one half of a screenful beyond either end of the project, // Allow scrolling up to one half of a screenful beyond either end of the project,
@ -242,7 +225,4 @@
// PRL 31 July 2018 // PRL 31 July 2018
#define EXPERIMENTAL_DRAGGABLE_PLAY_HEAD #define EXPERIMENTAL_DRAGGABLE_PLAY_HEAD
// Jonatã Bolzan Loss 31 Dec 2019
#define EXPERIMENTAL_TIMER_TOOLBAR
#endif #endif