diff options
-rw-r--r-- | vcl/osx/salframeview.mm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vcl/osx/salframeview.mm b/vcl/osx/salframeview.mm index d26617eb3d15..e4bb30413e31 100644 --- a/vcl/osx/salframeview.mm +++ b/vcl/osx/salframeview.mm @@ -203,6 +203,11 @@ static AquaSalFrame* getMouseContainerFrame() // Disable window restoration until we support it directly [pNSWindow setRestorable: NO]; + // tdf#137468: Restrict to 24-bit RGB as that is all that we can + // handle anyway. HDR is far off in the future for LibreOffice. + [pNSWindow setDynamicDepthLimit: NO]; + [pNSWindow setDepthLimit: NSWindowDepthTwentyfourBitRGB]; + return static_cast<SalFrameWindow *>(pNSWindow); } |