Changeset 84698 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jun 5, 2020 3:18:19 PM (5 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineLogicNormal.cpp
r82968 r84698 249 249 void UIMachineLogicNormal::sltHostScreenAvailableAreaChange() 250 250 { 251 #if def VBOX_WS_X11251 #if defined(VBOX_WS_X11) && !defined(VBOX_GUI_WITH_CUSTOMIZATIONS1) 252 252 /* Prevent handling if fake screen detected: */ 253 253 if (gpDesktop->isFakeScreenDetected()) … … 258 258 if (!pMachineWindow->isMaximized()) 259 259 pMachineWindow->restoreCachedGeometry(); 260 #endif /* VBOX_WS_X11 */260 #endif /* VBOX_WS_X11 && !VBOX_GUI_WITH_CUSTOMIZATIONS1 */ 261 261 262 262 /* Call to base-class: */ -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/scale/UIMachineLogicScale.cpp
r82968 r84698 75 75 void UIMachineLogicScale::sltHostScreenAvailableAreaChange() 76 76 { 77 #if def VBOX_WS_X1177 #if defined(VBOX_WS_X11) && !defined(VBOX_GUI_WITH_CUSTOMIZATIONS1) 78 78 /* Prevent handling if fake screen detected: */ 79 79 if (gpDesktop->isFakeScreenDetected()) … … 83 83 foreach (UIMachineWindow *pMachineWindow, machineWindows()) 84 84 pMachineWindow->restoreCachedGeometry(); 85 #endif /* VBOX_WS_X11 */85 #endif /* VBOX_WS_X11 && !VBOX_GUI_WITH_CUSTOMIZATIONS1 */ 86 86 87 87 /* Call to base-class: */
Note:
See TracChangeset
for help on using the changeset viewer.