diff options
author | 2020-11-12 00:19:12 +0100 | |
---|---|---|
committer | 2020-11-12 00:19:12 +0100 | |
commit | a44cd072120cc059e8dc4633b33d902817f89834 (patch) | |
tree | 22d6fe72d16ff44b8e036619a3bbf63710aa07ea /native/src/event.rs | |
parent | 3f968b8c876b7c2351232856887fb9c3e3db3130 (diff) | |
download | iced-a44cd072120cc059e8dc4633b33d902817f89834.tar.gz iced-a44cd072120cc059e8dc4633b33d902817f89834.tar.bz2 iced-a44cd072120cc059e8dc4633b33d902817f89834.zip |
Implement event capturing for `Button`
Diffstat (limited to 'native/src/event.rs')
-rw-r--r-- | native/src/event.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/src/event.rs b/native/src/event.rs index 91f33bd5..689c8f5d 100644 --- a/native/src/event.rs +++ b/native/src/event.rs @@ -25,7 +25,7 @@ pub enum Event { /// [`UserInterface`]: ../struct.UserInterface.html #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub enum Status { - /// The [`Event`] was _NOT_ handled by any widget. + /// The [`Event`] was **NOT** handled by any widget. /// /// [`Event`]: enum.Event.html Ignored, |