ajwillia-ms pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=b3f575fd4363ee0256afa7ecc19569ce6d3926fa

commit b3f575fd4363ee0256afa7ecc19569ce6d3926fa
Author: Andy Williams <[email protected]>
Date:   Tue Dec 12 17:52:46 2017 +0000

    docs: Fix description position for property pages
---
 src/scripts/elua/apps/gendoc.lua | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/scripts/elua/apps/gendoc.lua b/src/scripts/elua/apps/gendoc.lua
index 04378b0061..ee306bf18a 100644
--- a/src/scripts/elua/apps/gendoc.lua
+++ b/src/scripts/elua/apps/gendoc.lua
@@ -1412,14 +1412,6 @@ build_property = function(impl, cl)
         end
     end
 
-    local pgkeys = isget and fn:property_keys_get(fn.PROP_GET) or {}
-    local pskeys = isset and fn:property_keys_get(fn.PROP_SET) or {}
-    build_vallist(f, pgkeys, pskeys, "Keys")
-
-    local pgvals = isget and fn:property_values_get(fn.PROP_GET) or {}
-    local psvals = isset and fn:property_values_get(fn.PROP_SET) or {}
-    build_vallist(f, pgvals, psvals, "Values")
-
     if isget and isset then
         f:write_h("Description", 2)
         if doc:exists() or (not gdoc:exists() and not sdoc:exists()) then
@@ -1433,6 +1425,14 @@ build_property = function(impl, cl)
         f:write_nl()
     end
 
+    local pgkeys = isget and fn:property_keys_get(fn.PROP_GET) or {}
+    local pskeys = isset and fn:property_keys_get(fn.PROP_SET) or {}
+    build_vallist(f, pgkeys, pskeys, "Keys")
+
+    local pgvals = isget and fn:property_values_get(fn.PROP_GET) or {}
+    local psvals = isset and fn:property_values_get(fn.PROP_SET) or {}
+    build_vallist(f, pgvals, psvals, "Values")
+
     if isget and gdoc:exists() then
         if isset then
             f:write_h("Getter", 3)

-- 


Reply via email to