diff options
| author | Tim Hobbs <jesus.tesh@gmail.com> | 2014-03-20 12:12:10 -0700 |
|---|---|---|
| committer | Tim Hobbs <jesus.tesh@gmail.com> | 2014-03-20 12:12:10 -0700 |
| commit | d5e49f590d8e027a8755ea607bf3caba3ddcc9f1 (patch) | |
| tree | 717dc53979fb4686ad499caf40bb834f41c05d09 /MediaBrowser.Model/Session | |
| parent | 436d10bef946299f67109daa91eff5cc1325f9ff (diff) | |
Enable remote "fullscreen" command
This is really only pseudo-fullscreen, as the js fullscreen API doesn't
allow fullscreen without user interaction.
Diffstat (limited to 'MediaBrowser.Model/Session')
| -rw-r--r-- | MediaBrowser.Model/Session/PlaystateCommand.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Session/PlaystateCommand.cs b/MediaBrowser.Model/Session/PlaystateCommand.cs index b0dec66d4..d83c6dae5 100644 --- a/MediaBrowser.Model/Session/PlaystateCommand.cs +++ b/MediaBrowser.Model/Session/PlaystateCommand.cs @@ -29,7 +29,11 @@ namespace MediaBrowser.Model.Session /// <summary> /// The seek /// </summary> - Seek + Seek, + /// <summary> + /// The fullscreen + /// </summary> + Fullscreen } public class PlaystateRequest |
