Removed: Resample wav to 44kHz feature from GUI

This commit is contained in:
Jindra Petřík
2025-07-27 14:48:48 +02:00
parent 8f11f043ca
commit 285b4e2cc1
5 changed files with 10 additions and 6 deletions
@@ -6146,7 +6146,7 @@ public final class MainPanel extends JPanel implements TreeSelectionListener, Se
previewPanel.setImageReplaceButtonVisible(false, false, false, !((SoundTag) treeItem).isReadOnly() && ((SoundTag) treeItem).importSupported(), false, false, false);
if (!(treeItem instanceof SoundStreamHeadTypeTag)) {
try {
SoundTagPlayer soundThread = new SoundTagPlayer(null, (SoundTag) treeItem, Configuration.loopMedia.get() ? Integer.MAX_VALUE : 1, true, Configuration.previewResampleSound.get());
SoundTagPlayer soundThread = new SoundTagPlayer(null, (SoundTag) treeItem, Configuration.loopMedia.get() ? Integer.MAX_VALUE : 1, true, false); // Configuration.previewResampleSound.get());
if (!Configuration.autoPlaySounds.get()) {
soundThread.pause();
}