Changeset 43545 in vbox
- Timestamp:
- Oct 4, 2012 2:17:39 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp
r43424 r43545 153 153 foreach(UIMachineWindow *pMachineWindow, machineLogic()->machineWindows()) 154 154 { 155 bool bAdjustPosition = true;155 bool fAdjustPosition = false; 156 156 UIVisualStateType visualStateType = machineLogic()->visualStateType(); 157 157 158 158 if (visualStateType == UIVisualStateType_Normal || 159 159 visualStateType == UIVisualStateType_Scale) 160 bAdjustPosition = true;160 fAdjustPosition = true; 161 161 162 162 /* Normalize view's geometry: */ 163 pMachineWindow->machineView()->normalizeGeometry( bAdjustPosition);163 pMachineWindow->machineView()->normalizeGeometry(fAdjustPosition); 164 164 } 165 165 }
Note:
See TracChangeset
for help on using the changeset viewer.