chore: comment out debug print statements for left and right click in Windows system tray implementation
This commit is contained in:
parent
36e45f1dfd
commit
d77cd0ea04
@ -318,7 +318,7 @@ unsafe extern "system" fn tray_subclass_proc(
|
|||||||
|
|
||||||
match lparam.0 as u32 {
|
match lparam.0 as u32 {
|
||||||
win32wm::WM_LBUTTONUP => {
|
win32wm::WM_LBUTTONUP => {
|
||||||
println!("left click");
|
// println!("left click");
|
||||||
(subclass_input.sender)(Event::TrayEvent {
|
(subclass_input.sender)(Event::TrayEvent {
|
||||||
id: subclass_input.id,
|
id: subclass_input.id,
|
||||||
event: TrayEvent::LeftClick,
|
event: TrayEvent::LeftClick,
|
||||||
@ -341,7 +341,7 @@ unsafe extern "system" fn tray_subclass_proc(
|
|||||||
}
|
}
|
||||||
|
|
||||||
win32wm::WM_RBUTTONUP => {
|
win32wm::WM_RBUTTONUP => {
|
||||||
println!("right click");
|
// println!("right click");
|
||||||
(subclass_input.sender)(Event::TrayEvent {
|
(subclass_input.sender)(Event::TrayEvent {
|
||||||
id: subclass_input.id,
|
id: subclass_input.id,
|
||||||
event: TrayEvent::RightClick,
|
event: TrayEvent::RightClick,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user