Index: /trunk/src/VBox/Frontends/VirtualBox/src/globals/UIExtraDataEventHandler.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/globals/UIExtraDataEventHandler.cpp	(revision 50686)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/globals/UIExtraDataEventHandler.cpp	(revision 50687)
@@ -103,7 +103,5 @@
                 /* If extra data GUI/HidLedsSync is not present in VM config or set
                  * to 1 then sync is enabled. Otherwise, it is disabled. */
-
-                /* (temporary disabled by default) */
-                bool f = (strValue == "1") ? true : false;
+                bool f = (strValue.isEmpty() || strValue == "1") ? true : false;
                 emit sigHidLedsSyncStateChanged(f);
             }
Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp	(revision 50686)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineLogic.cpp	(revision 50687)
@@ -662,7 +662,5 @@
     /* If extra data GUI/HidLedsSync is not present in VM config or set
      * to 1 then sync is enabled. Otherwise, it is disabled. */
-
-    /* (temporary disabled by default) */
-    if (strHidLedsSyncSettings == "1")
+    if (strHidLedsSyncSettings.isEmpty() || strHidLedsSyncSettings == "1")
         m_isHidLedsSyncEnabled = true;
     else
