Skip to content

Commit

Permalink
Merge pull request #65 from qooxdoo/property-method-fix
Browse files Browse the repository at this point in the history
Fix property method

Thanks @goldim !
  • Loading branch information
hkollmann authored Apr 26, 2024
2 parents 594eb7a + 42c15b4 commit 15cbe6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/class/qxl/apiviewer/ui/panels/MethodPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ qx.Class.define("qxl.apiviewer.ui.panels.MethodPanel", {
* @Override
*/
canDisplayItem(dao) {
return dao instanceof qxl.apiviewer.dao.Method && !dao.isStatic();
return dao instanceof qxl.apiviewer.dao.Method && !dao.isStatic() || dao instanceof qxl.apiviewer.dao.PropertyMethod;
},
},
});

0 comments on commit 15cbe6c

Please sign in to comment.