Changeset 73159 in vbox for trunk/src/VBox
- Timestamp:
- Jul 16, 2018 3:20:52 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSystem.cpp
r73158 r73159 478 478 } 479 479 480 /* Warn user about possible performance degradation and suggest lowering # of CPU assigned to the VM instead: */480 /* Warn user about possible performance degradation and suggest lowering # of CPUs assigned to the VM instead: */ 481 481 if (m_pSliderCPUExecCap->value() < 100) 482 482 { 483 if (m_uMaxGuestCPU > 1 && m_pSliderCPUCount->value() > 1)483 if (m_uMaxGuestCPU > 1 && m_pSliderCPUCount->value() > 1) 484 484 { 485 message.second << tr("Please consider lowering the number of CPUs assigned to the virtual machine rather "486 " 485 message.second << tr("Please consider lowering the number of CPUs assigned to the virtual machine rather " 486 "than setting the processor execution cap."); 487 487 } 488 488 else if (m_uMaxGuestCPU > 1) 489 489 { 490 490 message.second << tr("Lowering the processor execution cap may result in a decline in performance."); 491 492 491 } 493 492 } 494 }495 493 496 494 /* Serialize message: */
Note:
See TracChangeset
for help on using the changeset viewer.