GNOME Bugzilla – Bug 728189
Cannot select text via shift+click
Last modified: 2014-04-14 16:27:21 UTC
Created attachment 274279 [details] [review] proposed patch Steps to reproduce: 1. Disable caret navigation (if it is enabled) 2. Use the mouse to select a portion of the text 3. Use shift + click to modify the selected region Expected results: The selected region would be modified to add/remove selected text based on the click location. Actual results: The selection is cleared.
Review of attachment 274279 [details] [review]: Awesome, thanks! Please, push it to both branches. ::: libview/ev-view.c @@ +4668,3 @@ + } else if (event->state & GDK_SHIFT_MASK) { + GdkPoint end_point; + end_point.x = event->x + view->scroll_x; Please, leave an empty line between declaration block and code.