Kayvan A. Sylvan wrote:

> I don't know when this bug popped up, but I can no longer select
> with the mouse (click-hold-drag) although the SHIFT-move method of
> text selection seems to work.

The problem is that the relevant code has been commented out. 
Unfortunately, it doesn't compile, so the fix will require some 
thought.

bool BufferView::Pimpl::workAreaDispatch(FuncRequest const & cmd0)
{
        ...
#if 0
        case LFUN_MOUSE_MOTION: {
                if (!available())
                        return false;
                FuncRequest cmd1 = cmd;
                DispatchResult res = cur.inset().dispatch(cur, cmd);
                if (fitCursor() || res.update()) {
                        update();
                        cur.updatePos();
                }
                return true;
        }
#else
        case LFUN_MOUSE_MOTION: 
#endif


-- 
Angus

Reply via email to