From 42d6549ed122cd12d5df53462bbd90914a217c24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Tue, 25 Nov 2025 23:26:55 +0100 Subject: [PATCH] Convert URL into a hyperlink in `runtime::window` --- runtime/src/window.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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,