Remove some sanity checks, no longer needed
Silenced a false-positive warning about anchor visibility. It was invisible because we're within a main window show() It will be checked by the unit-tests and fuzzer anyway. No need to do it in production.
This commit is contained in:
@@ -318,7 +318,8 @@ public:
|
||||
AnchorSanity_WidgetInvalidSizes = 4,
|
||||
AnchorSanity_Followers = 8,
|
||||
AnchorSanity_WidgetGeometry = 16,
|
||||
AnchorSanity_All = AnchorSanity_Intersections | AnchorSanity_WidgetMinSizes | AnchorSanity_WidgetInvalidSizes | AnchorSanity_Followers | AnchorSanity_WidgetGeometry
|
||||
AnchorSanity_Visibility = 32,
|
||||
AnchorSanity_All = AnchorSanity_Intersections | AnchorSanity_WidgetMinSizes | AnchorSanity_WidgetInvalidSizes | AnchorSanity_Followers | AnchorSanity_WidgetGeometry | AnchorSanity_Visibility
|
||||
};
|
||||
Q_ENUM(AnchorSanityOption)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user