Browse Source

Fix field recursion;

bjorn 6 years ago
parent
commit
b6504b3572
2 changed files with 2 additions and 2 deletions
  1. 1 1
      api/init.lua
  2. 1 1
      api/main.lua

+ 1 - 1
api/init.lua

@@ -28,7 +28,7 @@ return {
                     {
                       name = "mirrored",
                       type = "boolean",
-                      description = "                Whether the desktop window should display a mirror of what's in the headset.\n              "
+                      description = "Whether the desktop window should display a mirror of what's in the headset."
                     },
                     {
                       name = "offset",

+ 1 - 1
api/main.lua

@@ -121,10 +121,10 @@ local function processFunction(path, parent)
 
       for _, field in ipairs(t) do
         field.description = unwrap(field.description)
+        processTable(field.table)
       end
 
       t.description = unwrap(t.description)
-      processTable(t.table)
     end
 
     variant.description = unwrap(variant.description)