VirtualBox

Changeset 27150 in vbox


Ignore:
Timestamp:
Mar 7, 2010 5:59:53 PM (15 years ago)
Author:
vboxsync
Message:

FE/Qt4: New running VM core: fullscreen/seamless modes entering bug fix (removed wrong condition).

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

    r27141 r27150  
    264264                 * This hint is acted upon when (and only when) the autoresize property is "true": */
    265265                m_fShouldWeDoResize = uisession()->isGuestSupportsGraphics();
    266                 if (!isMachineWindowResizeIgnored() && m_bIsGuestAutoresizeEnabled && uisession()->isGuestSupportsGraphics())
     266                if (m_bIsGuestAutoresizeEnabled && m_fShouldWeDoResize)
    267267                    QTimer::singleShot(0, this, SLOT(sltPerformGuestResize()));
    268268                break;
  • trunk/src/VBox/Frontends/VirtualBox/src/runtime/seamless/UIMachineViewSeamless.cpp

    r27141 r27150  
    271271                 * This hint is acted upon when (and only when) the autoresize property is "true": */
    272272                m_fShouldWeDoResize = uisession()->isGuestSupportsGraphics();
    273                 if (!isMachineWindowResizeIgnored() && uisession()->isGuestSupportsGraphics())
     273                if (m_fShouldWeDoResize)
    274274                    QTimer::singleShot(0, this, SLOT(sltPerformGuestResize()));
    275275                break;
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette