소스 검색

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();
 }