Parcourir la source

PlayerComponent: fix regression when applying cache settings

Same problem as with previous commit.
Vincent Lang il y a 8 ans
Parent
commit
2a4e6fdb5f
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/player/PlayerComponent.cpp

+ 1 - 1
src/player/PlayerComponent.cpp

@@ -1068,7 +1068,7 @@ void PlayerComponent::updateVideoSettings()
   setAudioDelay(m_playbackAudioDelay);
 
   QVariant cache = SettingsComponent::Get().value(SETTINGS_SECTION_VIDEO, "cache");
-  mpv::qt::set_property(m_mpv, "cache", cache.toInt() * 1024);
+  mpv::qt::set_option_variant(m_mpv, "cache", cache.toInt() * 1024);
 
   updateVideoAspectSettings();
 }