Support Fuji SN EXR mode RAFs, #4830

This commit is contained in:
heckflosse
2019-02-19 21:50:34 +01:00
parent cbdf3267e0
commit b37f545391
4 changed files with 26 additions and 4 deletions

View File

@@ -730,7 +730,10 @@ void BayerProcess::FrameCountChanged(int n, int frameNum)
entry << i;
imageNumber->append(entry.str());
}
imageNumber->set_active(std::min(frameNum, n - 1));
if (n == 2) {
imageNumber->append(M("TP_RAW_IMAGENUM_SN"));
}
imageNumber->set_active(std::min(frameNum, n == 2 ? n : n - 1));
if (n == 1) {
imageNumberBox->hide();
} else {