Changeset 84612 in vbox
- Timestamp:
- May 29, 2020 2:52:26 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp
r82968 r84612 1680 1680 // Qt5 QCursor recommends 32 x 32 cursor, therefore the original data is copied to 1681 1681 // a larger QImage if necessary. Cursors like 10x16 did not work correctly (Solaris 10 guest). 1682 const uint uCursorWidth = uWidth >= 32 ? uWidth : 32; 1683 const uint uCursorHeight = uHeight >= 32 ? uHeight : 32; 1682 // Align the cursor dimensions to 32 bit pixels, because for example a 56x56 monochrome cursor 1683 // did not work correctly on Windows host. 1684 const uint uCursorWidth = RT_ALIGN_32(uWidth, 32); 1685 const uint uCursorHeight = RT_ALIGN_32(uHeight, 32); 1684 1686 1685 1687 if (fHasAlpha)
Note:
See TracChangeset
for help on using the changeset viewer.