File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ pub unsafe fn convert(
5555 } )
5656 }
5757 CGEventType :: KeyDown => {
58- println ! ( "Received {cg_event:?}" ) ;
58+ // println!("Received {cg_event:?}");
5959 let code = CGEvent :: integer_value_field (
6060 Some ( cg_event. as_ref ( ) ) ,
6161 CGEventField :: KeyboardEventKeycode ,
@@ -155,7 +155,7 @@ pub unsafe fn convert(
155155 return None ;
156156 }
157157
158- println ! ( "Received {key_code:?}" ) ;
158+ // println!("Received {key_code:?}");
159159 if let Some ( code) = key_from_special_key ( key_code. try_into ( ) . ok ( ) ?) {
160160 if key_pressed {
161161 Some ( EventType :: KeyPress ( code) )
@@ -168,7 +168,7 @@ pub unsafe fn convert(
168168 }
169169 }
170170 _ev => {
171- println ! ( "Received {_ev:?}" ) ;
171+ // println!("Received {_ev:?}");
172172 None
173173 }
174174 } ;
You can’t perform that action at this time.
0 commit comments