GUACAMOLE-1944: display margin only affects the default layer and not scrollbar layer

This commit is contained in:
corentin-soriano 2024-06-05 09:20:54 +02:00
parent 7d004ce1d0
commit 917fd3661a
No known key found for this signature in database

View File

@ -1881,10 +1881,6 @@ static void guac_terminal_double_click(guac_terminal* terminal, int row, int col
static int __guac_terminal_send_mouse(guac_terminal* term, guac_user* user,
int x, int y, int mask) {
/* Remove display margin from mouse position without going below 0 */
y = y >= term->display->margin ? y - term->display->margin : 0;
x = x >= term->display->margin ? x - term->display->margin : 0;
/* Ignore user input if terminal is not started */
if (!term->started) {
guac_client_log(term->client, GUAC_LOG_DEBUG, "Ignoring user input "
@ -1914,6 +1910,10 @@ static int __guac_terminal_send_mouse(guac_terminal* term, guac_user* user,
}
/* Remove display margin from mouse position without going below 0 */
y = y >= term->display->margin ? y - term->display->margin : 0;
x = x >= term->display->margin ? x - term->display->margin : 0;
term->mouse_mask = mask;
/* Show mouse cursor if not already shown */