mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
CUETools: fixed 'non-zero offset' warning, it should no longer appear when not encoding
This commit is contained in:
@@ -1323,7 +1323,7 @@ namespace JDP
|
||||
|
||||
private bool CheckWriteOffset()
|
||||
{
|
||||
if (numericWriteOffset.Value == 0 || SelectedOutputAudioType == AudioEncoderType.NoAudio || rbActionVerify.Checked)
|
||||
if (!rbActionEncode.Checked || SelectedOutputAudioType == AudioEncoderType.NoAudio || numericWriteOffset.Value == 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user