Remove compilation warning "enumeration value ‘NONE’ not handled in switch"

This commit is contained in:
ManoloFLTK 2024-03-13 21:10:35 +01:00
parent 7e12981abd
commit 3cf002b45d
1 changed files with 2 additions and 1 deletions

View File

@ -2409,7 +2409,8 @@ pointer_button(void *data,
case HEADER:
handle_button_on_header (frame_gtk, seat, serial, time, button, state);
break;
//default: /* FLTK */
default:
break; /* FLTK */
}
}