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

Working on new bug reported by Gale about MixerBoard clipping indicators on small clipped regions.

Remove some unused cruft. Rearrange some #includes so they are grouped logically. Add comment about unclear names (bools "clipping" vs "isclipping").
This commit is contained in:
v.audacity
2010-11-19 05:15:08 +00:00
parent 42d7d941e7
commit 08904c22c0
6 changed files with 32 additions and 37 deletions

View File

@@ -37,7 +37,7 @@ struct MeterBar {
double peakHoldTime;
wxRect rClip;
bool clipping;
bool isclipping;
bool isclipping; //ANSWER-ME: What's the diff between these bools?! "clipping" vs "isclipping" is not clear.
int tailPeakCount;
float peakPeakHold;
};