瀏覽代碼

PlayerComponent: fix regression when applying cache settings

Same problem as with previous commit.
Vincent Lang 8 年之前
父節點
當前提交
2a4e6fdb5f
共有 1 個文件被更改,包括 1 次插入1 次删除
  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();
 }