Changeset 97995 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jan 5, 2023 11:14:45 AM (2 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/UIMachineViewFullscreen.cpp
r97978 r97995 165 165 } 166 166 167 /* Step 3: Is guest-additions supports graphics? */ 168 if (fAdjust) 169 { 170 if (!uisession()->isGuestSupportsGraphics()) 171 { 172 LogRel2(("GUI: UIMachineViewFullscreen::adjustGuestScreenSize: Guest-additions are not supporting graphics, adjustment is omitted.\n")); 173 fAdjust = false; 174 } 175 } 176 /* Step 4: Is guest-screen visible? */ 167 /* Step 3: Is guest-screen visible? */ 177 168 if (fAdjust) 178 169 { … … 183 174 } 184 175 } 185 /* Step 5: Is guest-screen auto-resize enabled? */176 /* Step 4: Is guest-screen auto-resize enabled? */ 186 177 if (fAdjust) 187 178 { 188 if (! m_fGuestAutoresizeEnabled)179 if (!isGuestAutoresizeEnabled()) 189 180 { 190 181 LogRel2(("GUI: UIMachineViewFullscreen::adjustGuestScreenSize: Guest-screen auto-resize is disabled, adjustment is omitted.\n")); -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineViewSeamless.cpp
r97978 r97995 178 178 } 179 179 180 /* Step 3: Is guest-additions supports graphics? */ 181 if (fAdjust) 182 { 183 if (!uisession()->isGuestSupportsGraphics()) 184 { 185 LogRel2(("GUI: UIMachineViewSeamless::adjustGuestScreenSize: Guest-additions are not supporting graphics, adjustment is omitted.\n")); 186 fAdjust = false; 187 } 188 } 189 /* Step 4: Is guest-screen visible? */ 180 /* Step 3: Is guest-screen visible? */ 190 181 if (fAdjust) 191 182 {
Note:
See TracChangeset
for help on using the changeset viewer.