Changeset 55139 in vbox
- Timestamp:
- Apr 8, 2015 2:32:33 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp
r55133 r55139 520 520 , m_pMachineView(NULL) 521 521 , m_iWinId(0) 522 , m_fUpdatesAllowed( true)522 , m_fUpdatesAllowed(false) 523 523 , m_fUnused(false) 524 524 , m_fAutoEnabled(false) … … 831 831 return E_FAIL; 832 832 } 833 834 /* Directly update m_image: */ 835 if (m_fUpdatesAllowed) 833 /* Directly update m_image if update fits: */ 834 if ( m_fUpdatesAllowed 835 && uX + uWidth <= (ULONG)m_image.width() 836 && uY + uHeight <= (ULONG)m_image.height()) 836 837 { 837 838 /* Copy to m_image: */
Note:
See TracChangeset
for help on using the changeset viewer.

