Skip to content
Snippets Groups Projects
Commit 8236ad0f authored by Marvin Scholz's avatar Marvin Scholz
Browse files

macosx: fix slider bounds clipping

Fixes the slider not clipping correctly on recent macOS versions when
built against recent SDKs.

Fix #28953
parent a5972365
No related branches found
No related tags found
Loading
Pipeline #581201 passed with stage
in 17 minutes and 18 seconds
......@@ -37,6 +37,13 @@
_isScrollable = YES;
if (@available(macOS 10.14, *)) {
[self viewDidChangeEffectiveAppearance];
#if (__MAC_OS_X_VERSION_MAX_ALLOWED >= 140000)
// While this is available back to 10.9, it defaulted to
// true in macOS 13 and earlier so setting it starting
// in macOS 10.14+ is fine.
[self setClipsToBounds:YES];
#endif
} else {
[self setSliderStyleLight];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment