1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-16 06:03:49 +01: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

@@ -3499,7 +3499,7 @@ void TrackPanelCellIterator::UpdateRect()
}
case CellType::VRuler:
{
const int kGuard = 8; // 8 pixels to reduce risk of VZooming accidentally
const int kGuard = 5; // 5 pixels to reduce risk of VZooming accidentally
mRect.x = kTrackInfoWidth;
// Right edge of the VRuler is inactive.
mRect.width = mPanel->GetLeftOffset() - mRect.x -kGuard;