mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-21 16:37:12 +01:00
Move AudacityProject::GetZoomOf*
This commit is contained in:
@@ -87,9 +87,9 @@ bool ZoomInfo::ZoomOutAvailable() const
|
||||
return zoom > gMinZoom;
|
||||
}
|
||||
|
||||
double ZoomInfo::GetZoom( ){ return zoom;};
|
||||
double ZoomInfo::GetMaxZoom( ){ return gMaxZoom;};
|
||||
double ZoomInfo::GetMinZoom( ){ return gMinZoom;};
|
||||
double ZoomInfo::GetZoom( ) const { return zoom;};
|
||||
double ZoomInfo::GetMaxZoom( ) { return gMaxZoom;};
|
||||
double ZoomInfo::GetMinZoom( ) { return gMinZoom;};
|
||||
|
||||
void ZoomInfo::SetZoom(double pixelsPerSecond)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user