corentin-soriano opened a new pull request, #523: URL: https://github.com/apache/guacamole-server/pull/523
This selection :  Clipboard content before this code: ```c /* Pass through start/end coordinates if they are already in the expected * order, adjusting only for final character width */ if (terminal->selection_start_row < terminal->selection_end_row || (terminal->selection_start_row == terminal->selection_end_row && terminal->selection_start_column < terminal->selection_end_column)) { *start_row = terminal->selection_start_row; *start_col = terminal->selection_start_column; *end_row = terminal->selection_end_row; *end_col = terminal->selection_end_column + terminal->selection_end_width - 1; } ``` And now: ```c /* Pass through start/end coordinates if they are already in the expected * order, adjusting only for final character width */ if (terminal->selection_start_row < terminal->selection_end_row || (terminal->selection_start_row == terminal->selection_end_row && terminal->selection_start_column < terminal->selection_end_column)) { *start_row = terminal->selection_start_row; *start_col = terminal->selection_start_column; *end_row = terminal->selection_end_row; *end_col = terminal->selection_end_column + terminal->selection_end_width - 1; } ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
