Changeset 50687 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Mar 4, 2014 7:36:08 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 92631
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIExtraDataEventHandler.cpp
r50684 r50687 103 103 /* If extra data GUI/HidLedsSync is not present in VM config or set 104 104 * to 1 then sync is enabled. Otherwise, it is disabled. */ 105 106 /* (temporary disabled by default) */ 107 bool f = (strValue == "1") ? true : false; 105 bool f = (strValue.isEmpty() || strValue == "1") ? true : false; 108 106 emit sigHidLedsSyncStateChanged(f); 109 107 } -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp
r50684 r50687 662 662 /* If extra data GUI/HidLedsSync is not present in VM config or set 663 663 * to 1 then sync is enabled. Otherwise, it is disabled. */ 664 665 /* (temporary disabled by default) */ 666 if (strHidLedsSyncSettings == "1") 664 if (strHidLedsSyncSettings.isEmpty() || strHidLedsSyncSettings == "1") 667 665 m_isHidLedsSyncEnabled = true; 668 666 else
Note:
See TracChangeset
for help on using the changeset viewer.