diff options
| author | 2020-04-02 03:33:30 +0200 | |
|---|---|---|
| committer | 2020-04-02 03:44:14 +0200 | |
| commit | 8c8325d0cf797f7ce69c2d9e0db83faa3d94d5f0 (patch) | |
| tree | 0001d8bdff5717d2cfb97baac4cd035a2efa5955 /winit | |
| parent | 703f7657e15234554afb5c62fafed6fd4f8d1d03 (diff) | |
| download | iced-8c8325d0cf797f7ce69c2d9e0db83faa3d94d5f0.tar.gz iced-8c8325d0cf797f7ce69c2d9e0db83faa3d94d5f0.tar.bz2 iced-8c8325d0cf797f7ce69c2d9e0db83faa3d94d5f0.zip | |
Write documentation for the `debug` feature
Diffstat (limited to 'winit')
| -rw-r--r-- | winit/src/application.rs | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/winit/src/application.rs b/winit/src/application.rs index fb02fdec..b974711c 100644 --- a/winit/src/application.rs +++ b/winit/src/application.rs @@ -12,6 +12,9 @@ use crate::{  ///  /// An [`Application`](trait.Application.html) can execute asynchronous actions  /// by returning a [`Command`](struct.Command.html) in some of its methods. +/// +/// When using an [`Application`] with the `debug` feature enabled, a debug view +/// can be toggled by pressing `F12`.  pub trait Application: Sized {      /// The graphics backend to use to draw the [`Application`].      /// | 
