Changeset 87720 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Feb 11, 2021 9:42:55 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142765
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineWindow.cpp
r86051 r87720 592 592 switch (visualStateType) 593 593 { 594 case UIVisualStateType_Normal: return 0;594 case UIVisualStateType_Normal: return Qt::Alignment(); 595 595 case UIVisualStateType_Fullscreen: return Qt::AlignVCenter | Qt::AlignHCenter; 596 case UIVisualStateType_Seamless: return 0;597 case UIVisualStateType_Scale: return 0;596 case UIVisualStateType_Seamless: return Qt::Alignment(); 597 case UIVisualStateType_Scale: return Qt::Alignment(); 598 598 case UIVisualStateType_Invalid: case UIVisualStateType_All: break; /* Shut up, MSC! */ 599 599 } 600 600 AssertMsgFailed(("Incorrect visual state!")); 601 return 0;601 return Qt::Alignment(); 602 602 } 603 603
Note:
See TracChangeset
for help on using the changeset viewer.