From 63110570da9fff4a854414fe8910701a82aa3079 Mon Sep 17 00:00:00 2001 From: Robert Ancell Date: Mon, 20 Jan 2025 12:23:19 +1300 Subject: [PATCH] Update documentation on what display information is provided. (#161785) This was fixed in Linux in https://github.com/flutter/flutter/pull/161359 --- engine/src/flutter/lib/ui/platform_dispatcher.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/engine/src/flutter/lib/ui/platform_dispatcher.dart b/engine/src/flutter/lib/ui/platform_dispatcher.dart index 01225704b34b4..6f518ce6587a1 100644 --- a/engine/src/flutter/lib/ui/platform_dispatcher.dart +++ b/engine/src/flutter/lib/ui/platform_dispatcher.dart @@ -174,9 +174,9 @@ class PlatformDispatcher { /// /// Presently, on Android and Web this collection will only contain the /// display that the current window is on. On iOS, it will only contains the - /// main display on the phone or tablet. On Desktop, it will contain only - /// a main display with a valid refresh rate but invalid size and device - /// pixel ratio values. + /// main display on the phone or tablet. On Desktops other than Linux, it will + /// contain only a main display with a valid refresh rate but invalid size and + /// device pixel ratio values. // TODO(dnfield): Update these docs when https://github.com/flutter/flutter/issues/125939 // and https://github.com/flutter/flutter/issues/125938 are resolved. Iterable get displays => _displays.values;