Fix property visibility to correctly ignore hidden properties

This commit is contained in:
Alexander Bock
2017-05-19 16:57:12 -04:00
parent 302d3eb64e
commit f22be1273a
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -68,9 +68,9 @@ public:
*/
enum class Visibility {
All = 3, ///< Visible for all types, no matter what
Developer = 2, ///< Visible in Developer mode
User = 1, ///< Visible in User mode
Hidden = 0 ///< Never visible
Hidden = 2, ///< Never visible
Developer = 1, ///< Visible in Developer mode
User = 0 ///< Visible in User mode
};
/**