Merge remote-tracking branch 'origin/master' into feat/multi-window-support
# Conflicts: # native/src/command/action.rs # native/src/window/action.rs # winit/src/window.rs
This commit is contained in:
commit
63fb608d8b
55 changed files with 1218 additions and 224 deletions
|
|
@ -58,12 +58,12 @@ impl<T> fmt::Debug for Action<T> {
|
|||
match self {
|
||||
Self::Future(_) => write!(f, "Action::Future"),
|
||||
Self::Clipboard(action) => {
|
||||
write!(f, "Action::Clipboard({:?})", action)
|
||||
write!(f, "Action::Clipboard({action:?})")
|
||||
}
|
||||
Self::Window(id, action) => {
|
||||
write!(f, "Action::Window({:?}, {:?})", id, action)
|
||||
write!(f, "Action::Window({id:?}, {action:?})")
|
||||
}
|
||||
Self::System(action) => write!(f, "Action::System({:?})", action),
|
||||
Self::System(action) => write!(f, "Action::System({action:?})"),
|
||||
Self::Widget(_action) => write!(f, "Action::Widget"),
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue