Changeset 57486 in vbox
- Timestamp:
- Aug 21, 2015 8:45:03 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/seamless-x11.cpp
r57372 r57486 90 90 } 91 91 mHostCallback = pHostCallback; 92 mEnabled = false; 92 93 unmonitorClientList(); 93 94 LogRelFlowFunc(("returning %Rrc\n", rc)); … … 306 307 /* Start by sending information about the current window setup to the host. We do this 307 308 here because we want to send all such information from a single thread. */ 308 if (mChanged )309 if (mChanged && mEnabled) 309 310 { 310 311 updateRects(); … … 313 314 mChanged = false; 314 315 XNextEvent(mDisplay, &event); 316 if (!mEnabled) 317 return; 315 318 switch (event.type) 316 319 { … … 354 357 break; 355 358 } 356 LogRelFlowFunc((" returning\n"));359 LogRelFlowFunc(("processed event\n")); 357 360 } 358 361
Note:
See TracChangeset
for help on using the changeset viewer.