GUACAMOLE-1944: Merge remove display margin on mouse position

This commit is contained in:
Virtually Nick 2024-04-19 09:17:06 -04:00 committed by GitHub
commit ad0b4401a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1751,6 +1751,10 @@ int guac_terminal_send_key(guac_terminal* term, int keysym, int pressed) {
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 "