From b6612bd56ce0db04c8106162edccce21406bd330 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Fri, 21 Jun 2024 10:11:57 -0700 Subject: [PATCH] core/panelwindow: remove QSDOC_HIDE for above and focusable props --- src/core/panelinterface.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/panelinterface.hpp b/src/core/panelinterface.hpp index e7ae032..c385312 100644 --- a/src/core/panelinterface.hpp +++ b/src/core/panelinterface.hpp @@ -118,9 +118,9 @@ class PanelWindowInterface: public WindowInterface { /// Defaults to `ExclusionMode.Auto`. Q_PROPERTY(ExclusionMode::Enum exclusionMode READ exclusionMode WRITE setExclusionMode NOTIFY exclusionModeChanged); /// If the panel should render above standard windows. Defaults to true. - QSDOC_HIDE Q_PROPERTY(bool aboveWindows READ aboveWindows WRITE setAboveWindows NOTIFY aboveWindowsChanged); + Q_PROPERTY(bool aboveWindows READ aboveWindows WRITE setAboveWindows NOTIFY aboveWindowsChanged); /// Defaults to false. - QSDOC_HIDE Q_PROPERTY(bool focusable READ focusable WRITE setFocusable NOTIFY focusableChanged); + Q_PROPERTY(bool focusable READ focusable WRITE setFocusable NOTIFY focusableChanged); // clang-format on QSDOC_NAMED_ELEMENT(PanelWindow);