Fix compilation errors under Ubuntu 20.04

The problems will hopefully be fixed upstream later
This commit is contained in:
ManoloFLTK 2024-03-12 22:28:58 +01:00
parent 5e4f51ac6b
commit 14d7218acd
1 changed files with 11 additions and 10 deletions

View File

@ -2246,15 +2246,16 @@ handle_titlebar_gesture(struct libdecor_frame_gtk *frame_gtk,
break;
case TITLEBAR_GESTURE_MIDDLE_CLICK:
break;
case TITLEBAR_GESTURE_RIGHT_CLICK:
const int title_height = gtk_widget_get_allocated_height(frame_gtk->header);
libdecor_frame_show_window_menu(&frame_gtk->frame,
seat->wl_seat,
serial,
seat->pointer_x,
seat->pointer_y
-title_height);
case TITLEBAR_GESTURE_RIGHT_CLICK: { /* FLTK */
const int title_height = gtk_widget_get_allocated_height(frame_gtk->header);
libdecor_frame_show_window_menu(&frame_gtk->frame,
seat->wl_seat,
serial,
seat->pointer_x,
seat->pointer_y
-title_height);
} /* FLTK */
break;
}
}
@ -2408,7 +2409,7 @@ pointer_button(void *data,
case HEADER:
handle_button_on_header (frame_gtk, seat, serial, time, button, state);
break;
default:
//default: /* FLTK */
}
}