Changeset 42318 in vbox for trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp
- Timestamp:
- Jul 23, 2012 9:27:05 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp
r42248 r42318 181 181 QString strKey = makeExtraDataKeyPerMonitor(GUI_LastGuestSizeHintWasFullscreen); 182 182 machine.SetExtraData(strKey, isFullscreenOrSeamless() ? "true" : ""); 183 } 184 185 void UIMachineView::sltDesktopResized() 186 { 187 setMaxGuestSize(); 183 188 } 184 189 … … 494 499 } 495 500 501 void UIMachineView::prepareConnections() 502 { 503 /* Desktop resolution change (e.g. monitor hotplug): */ 504 connect(QApplication::desktop(), SIGNAL(resized(int)), this, 505 SLOT(sltDesktopResized())); 506 } 507 496 508 void UIMachineView::prepareConsoleConnections() 497 509 {
Note:
See TracChangeset
for help on using the changeset viewer.