From 8732317cf4202ee88fb0aad0bbb90ea3e31ef871 Mon Sep 17 00:00:00 2001 From: Lucas Nogueira Date: Wed, 12 Jul 2023 10:34:50 -0300 Subject: [PATCH] update docs --- src/event_loop.rs | 1 - src/window.rs | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/event_loop.rs b/src/event_loop.rs index 7410123d7..ef2e82d2d 100644 --- a/src/event_loop.rs +++ b/src/event_loop.rs @@ -261,7 +261,6 @@ impl EventLoopWindowTarget { /// /// - **Windows:** Unsupported. Use the Progress Bar Function Available in Window (Windows can have different progress bars for different window) /// - **Linux:** Only supported desktop environments with `libunity` (e.g. GNOME). - /// - **macOS:** Unimplemented. /// - **iOS / Android:** Unsupported. #[inline] pub fn set_progress_bar(&self, _progress: ProgressBarState) { diff --git a/src/window.rs b/src/window.rs index 82f532158..7925767c2 100644 --- a/src/window.rs +++ b/src/window.rs @@ -1085,8 +1085,7 @@ impl Window { /// /// ## Platform-specific /// - /// - **Linux**: Progress bar is app-wide and not specific to this window. Only supported desktop environments with `libunity` (e.g. GNOME). - /// - **macOS**: Unimplemented. + /// - **Linux / macOS**: Progress bar is app-wide and not specific to this window. Only supported desktop environments with `libunity` (e.g. GNOME). /// - **iOS / Android:** Unsupported. #[inline] pub fn set_progress_bar(&self, progress: ProgressBarState) {