Explorar o código

PlayerComponent: fix regression when applying cache settings

Same problem as with previous commit.
Vincent Lang %!s(int64=8) %!d(string=hai) anos
pai
achega
2a4e6fdb5f
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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();
 }