소스 검색

Clarify precedence of mpv.conf and manually set properties

Towards #736
Matt Seeley 6 년 전
부모
커밋
4af8326705
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/player/PlayerComponent.cpp

+ 2 - 0
src/player/PlayerComponent.cpp

@@ -88,6 +88,8 @@ bool PlayerComponent::componentInitialize()
   mpv_request_log_messages(m_mpv, "terminal-default");
   mpv::qt::set_property(m_mpv, "msg-level", "all=v");
 
+  // Configuration properties defined in the mpv.conf will override our
+  // hardcoded properties below.
   mpv::qt::set_property(m_mpv, "config", "yes");
   mpv::qt::set_property(m_mpv, "config-dir", Paths::dataDir());