File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -74,14 +74,14 @@ class Stream::Impl
7474
7575bool processEvents ( const bool interact )
7676{
77- while ( _stream.isRegisteredForEvents () && _stream. hasEvent ( ))
77+ while ( _stream.hasEvent ( ))
7878 {
79- deflect::Event event = _stream.getEvent ();
79+ const deflect::Event event = _stream.getEvent ();
8080
8181 if ( event.type == deflect::Event::EVT_CLOSE )
8282 return false ;
8383
84- if ( !interact )
84+ if ( !_stream. isRegisteredForEvents () || ! interact )
8585 continue ;
8686
8787 switch ( event.type )
Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ Changelog {#Changelog}
55
66### 0.11.0 (git master)
77
8+ * [ 111] ( https://github.com/BlueBrain/Deflect/pull/111 ) :
9+ DesktopStreamer: bugfix; stop streaming when the server closes the stream
10+ and the "remote control" option was not enabled.
811* [ 110] ( https://github.com/BlueBrain/Deflect/pull/110 ) :
912 DesktopStreamer: Support for streaming multiple windows on OSX disabled by
1013 default, can be enabled with cmake -DDESKTOPSTREAMER_ENABLE_MULTIWINDOW=ON.
You can’t perform that action at this time.
0 commit comments