diff --git a/lib/services/window_service.dart b/lib/services/window_service.dart index 437f620c8..ca53ca17e 100644 --- a/lib/services/window_service.dart +++ b/lib/services/window_service.dart @@ -140,12 +140,13 @@ class PlatformWindowService implements WindowService { @override Future setHdrColorMode(bool on) async { - try { - await _platform.invokeMethod('setHdrColorMode', { - 'on': on, - }); - } on PlatformException catch (e, stack) { - await reportService.recordError(e, stack); - } + // TODO TLAD [hdr] enable when ready + // try { + // await _platform.invokeMethod('setHdrColorMode', { + // 'on': on, + // }); + // } on PlatformException catch (e, stack) { + // await reportService.recordError(e, stack); + // } } }