Commit 4e751f11 authored by Felix Paul Kühne's avatar Felix Paul Kühne

* allow the screensaver to appear when video playback is paused (closes #963)

parent 14275baf
...@@ -404,8 +404,9 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable, ...@@ -404,8 +404,9 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
- (void)manage - (void)manage
{ {
/* Disable Screensaver */ /* Disable Screensaver, when we're playing something, but allow it on pause */
UpdateSystemActivity( UsrActivity ); if( VLCIntf->p_sys->i_play_status == PLAYING_S )
UpdateSystemActivity( UsrActivity );
} }
- (id)getWindow - (id)getWindow
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment