diff options
author | 2022-04-30 14:20:52 +0200 | |
---|---|---|
committer | 2022-04-30 14:20:52 +0200 | |
commit | 68e9eb0a9b45b86713ce5d0e9c2273a60f2cc11c (patch) | |
tree | b60c4f355d956e9d5eafc0047dfda77b7433bf0e /winit | |
parent | ac35fe3edf78c1674fe85b37549002e006b0ff13 (diff) | |
download | iced-68e9eb0a9b45b86713ce5d0e9c2273a60f2cc11c.tar.gz iced-68e9eb0a9b45b86713ce5d0e9c2273a60f2cc11c.tar.bz2 iced-68e9eb0a9b45b86713ce5d0e9c2273a60f2cc11c.zip |
Fix broken intra-doc links in documentation
Diffstat (limited to 'winit')
-rw-r--r-- | winit/src/settings.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/winit/src/settings.rs b/winit/src/settings.rs index 9a93824a..213ef47f 100644 --- a/winit/src/settings.rs +++ b/winit/src/settings.rs @@ -37,12 +37,16 @@ pub struct Settings<Flags> { /// Whether the [`Application`] should exit when the user requests the /// window to close (e.g. the user presses the close button). + /// + /// [`Application`]: crate::Application pub exit_on_close_request: bool, /// Whether the [`Application`] should try to build the context /// using OpenGL ES first then OpenGL. /// /// NOTE: Only works for the `glow` backend. + /// + /// [`Application`]: crate::Application pub try_opengles_first: bool, } |