GUACAMOLE-1944: Merge display margin only affects the default layer and not scrollbar layer
This commit is contained in:
commit
eb9c9f3106
@ -1885,10 +1885,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 "
|
||||
@ -1918,6 +1914,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 */
|
||||
|
||||
Loading…
Reference in New Issue
Block a user