1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-10 08:33:36 +02:00

Bug1239: Correct time rulers after importing files (with File>Open) ...

... The fisheye stuff was to blame.
This commit is contained in:
Paul Licameli
2016-01-26 17:37:16 -05:00
parent 8ce18979c8
commit 17c9369286
9 changed files with 30 additions and 23 deletions

View File

@@ -27,7 +27,7 @@ class TimeTrack: public Track {
public:
TimeTrack(DirManager * projDirManager);
TimeTrack(DirManager * projDirManager, const ZoomInfo *zoomInfo);
/** @brief Copy-Constructor - create a new TimeTrack:: which is an independent copy of the original
*
* Calls TimeTrack::Init() to copy the track metadata, then does a bunch of manipulations on the
@@ -117,6 +117,7 @@ class TimeTrack: public Track {
void testMe();
private:
const ZoomInfo *const mZoomInfo;
Envelope *mEnvelope;
Ruler *mRuler;
double mRangeLower;