This commit is contained in:
whitesnakeftw 2026-03-04 01:01:50 +01:00
parent 9950c6147a
commit 0a4e10022e
2 changed files with 6 additions and 0 deletions

View file

@ -776,6 +776,11 @@ sc_input_manager_process_mouse_button(struct sc_input_manager *im,
action_app_switch(im, action);
}
return;
case SC_MOUSE_BINDING_INFO:
if (im->kp) {
action_info(im, action);
}
return;
case SC_MOUSE_BINDING_EXPAND_NOTIFICATION_PANEL:
if (down) {
if (event->clicks < 2) {

View file

@ -182,6 +182,7 @@ enum sc_mouse_binding {
SC_MOUSE_BINDING_BACK,
SC_MOUSE_BINDING_HOME,
SC_MOUSE_BINDING_APP_SWITCH,
SC_MOUSE_BINDING_INFO,
SC_MOUSE_BINDING_EXPAND_NOTIFICATION_PANEL,
};