mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-03-11 17:45:38 +00:00
feat: conditionally show upscaler button based on user setting
This commit is contained in:
parent
2394f5d158
commit
f6b13c27c9
1 changed files with 1 additions and 1 deletions
|
|
@ -395,7 +395,7 @@ export const PlayerControls: React.FC<PlayerControlsProps> = ({
|
|||
)}
|
||||
|
||||
{/* Video Enhancement Button (Top Access) */}
|
||||
{playerBackend === 'MPV' && setShowEnhancementModal && (
|
||||
{playerBackend === 'MPV' && setShowEnhancementModal && settings.enableShaders && (
|
||||
<TouchableOpacity
|
||||
style={{ padding: 8 }}
|
||||
onPress={() => setShowEnhancementModal(true)}
|
||||
|
|
|
|||
Loading…
Reference in a new issue