We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e45a955 commit 6adcc98Copy full SHA for 6adcc98
2 files changed
inputshare-gui/src/client.rs
@@ -155,7 +155,7 @@ pub fn create_client<'a>(mut stream: TcpStream) -> InputHook<'a>{
155
}
156
157
});
158
- _hook
+ _hook.unwrap()
159
160
161
inputshare-gui/src/pages/default.rs
@@ -72,7 +72,7 @@ impl DefaultPage {
72
hook: Some(InputHook::new(|even| {
73
println!("Test");
74
true
75
- })),
+ }).unwrap()),
76
..Default::default()
77
78
0 commit comments