Skip to content

Commit

Permalink
Fix setting to allow fully disabling OSC. (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
iwalton3 committed Apr 21, 2021
1 parent 6fb9aab commit f7b839b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
<description>
<p>Fix DPI issue on Windows.</p>
<p>Remove dependency on pydantic and handle some possible config errors.</p>
<p>Fix setting to allow fully disabling OSC. (#212)</p>
</description>
</release>
<release version="2.0.0" date="2021-04-19">
Expand Down
2 changes: 1 addition & 1 deletion jellyfin_mpv_shim/menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def hide_menu(self):
)
self.playerManager.show_text("", 0, 0)

self.playerManager.enable_osc(True)
self.playerManager.enable_osc(settings.enable_osc)
self.playerManager.triggered_menu(False)
self.playerManager.force_window(False)

Expand Down

0 comments on commit f7b839b

Please sign in to comment.