Skip to content

Commit 896cd28

Browse files
committed
- Track/Export Tracks... dialog ranges are not capped to current
session-end anymore. (EXPERIMENTAL)
1 parent abfa827 commit 896cd28

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ ChangeLog
66

77
GIT HEAD
88

9+
- Track/Export Tracks... dialog ranges are not capped to current
10+
session-end anymore. (EXPERIMENTAL)
11+
912
- Fixed MIDI clip editor vertical-zooming when using the [Ctrl+]
1013
mouse-wheel.
1114

src/qtractorExportForm.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -476,10 +476,10 @@ void qtractorExportForm::rangeChanged (void)
476476
iExportStart = pSession->sessionStart();
477477
iExportEnd = pSession->sessionEnd();
478478
}
479-
479+
#if 0
480480
if (iExportEnd > pSession->sessionEnd())
481481
iExportEnd = pSession->sessionEnd();
482-
482+
#endif
483483
m_ui.ExportStartSpinBox->setValue(iExportStart, false);
484484
m_ui.ExportEndSpinBox->setValue(iExportEnd, false);
485485

0 commit comments

Comments
 (0)