Changeset 87245 in vbox
- Timestamp:
- Jan 14, 2021 9:52:29 AM (4 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/global/UIGlobalSettingsPortForwardingDlg.cpp
r82968 r87245 22 22 23 23 /* GUI includes: */ 24 #include "UIDesktopWidgetWatchdog.h" 24 25 #include "UIGlobalSettingsPortForwardingDlg.h" 25 26 #include "UIIconPool.h" … … 66 67 /* Retranslate dialog: */ 67 68 retranslateUi(); 69 70 /* Limit the minimum size to 33% of screen size: */ 71 setMinimumSize(gpDesktop->screenGeometry(this).size() / 3); 68 72 } 69 73 -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsPortForwardingDlg.cpp
r82968 r87245 21 21 22 22 /* GUI includes: */ 23 #include "UIDesktopWidgetWatchdog.h" 23 24 #include "UIMachineSettingsPortForwardingDlg.h" 24 25 #include "UIIconPool.h" … … 61 62 /* Retranslate dialog: */ 62 63 retranslateUi(); 64 65 /* Limit the minimum size to 33% of screen size: */ 66 setMinimumSize(gpDesktop->screenGeometry(this).size() / 3); 63 67 } 64 68 -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPortForwardingTable.cpp
r86233 r87245 29 29 /* GUI includes: */ 30 30 #include "QITableView.h" 31 #include "UIDesktopWidgetWatchdog.h"32 31 #include "UIConverter.h" 33 32 #include "UIIconPool.h" … … 966 965 /* Apply language settings: */ 967 966 retranslateUi(); 968 969 /* Limit the minimum size to 33% of screen size: */970 setMinimumSize(gpDesktop->screenGeometry(this).size() / 3);971 967 } 972 968
Note:
See TracChangeset
for help on using the changeset viewer.