- Timestamp:
- Jan 31, 2014 1:11:11 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp
r50299 r50301 694 694 bool UIMachineLogic::isHidLedsSyncEnabled() 695 695 { 696 /** If extra data GUI/HidLedsSync is not present in VM config or set to 1 then sync is enabled. Otherwise, it is disabled. */ 696 697 QString strHidLedsSyncSettings = session().GetMachine().GetExtraData(GUI_HidLedsSync); 697 if (strHidLedsSyncSettings == "1")698 if (strHidLedsSyncSettings == NULL || strHidLedsSyncSettings == "1") 698 699 return true; 700 699 701 return false; 700 702 }
Note:
See TracChangeset
for help on using the changeset viewer.