diff --git a/runtime/src/window.rs b/runtime/src/window.rs index 3b464d3f..2eb05098 100644 --- a/runtime/src/window.rs +++ b/runtime/src/window.rs @@ -180,7 +180,7 @@ pub enum Action { /// Set whether the system can automatically organize windows into tabs. /// - /// See https://developer.apple.com/documentation/appkit/nswindow/1646657-allowsautomaticwindowtabbing + /// See SetAllowAutomaticTabbing(bool), /// Redraw all the windows. @@ -509,7 +509,7 @@ pub fn monitor_size(id: Id) -> Task> { /// Sets whether the system can automatically organize windows into tabs. /// -/// See https://developer.apple.com/documentation/appkit/nswindow/1646657-allowsautomaticwindowtabbing +/// See pub fn allow_automatic_tabbing(enabled: bool) -> Task { task::effect(crate::Action::Window(Action::SetAllowAutomaticTabbing( enabled,