Changeset 75367 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Nov 9, 2018 4:09:09 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126502
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/RecordingSettingsImpl.cpp
r75361 r75367 590 590 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 591 591 592 /* Only allow settings to be changed when recording is disabled. */ 593 return m->bd->fEnabled == false; 592 /* Only allow settings to be changed when recording is disabled when the machine is running. */ 593 if ( Global::IsOnline(adep.machineState()) 594 && m->bd->fEnabled) 595 { 596 return false; 597 } 598 599 return true; 594 600 } 595 601
Note:
See TracChangeset
for help on using the changeset viewer.