> Since about v1.0.0pre8, I've found it very hard to open error boxes by
> double-clicking on them: I can't seem to find the place to click. I have
> to keep clicking over them madly until they open!
Click on the left half of the box!
This is a known bug, that I introduced when I changed the click
policy to go according to which half of the letters (and insets)
you click on.
If one of the other coders has time, the bug can be fixed by
adding a check in BufferView.C, as this:
When the user clicks on an inset, we check which inset it is
by moving the cursor, and then taking the inset to the immediate
right of the cursor position. However, if the users clicks on the
right half of the inset, the cursor is now positioned to the right
of the inset, and we should instead check the inset at the position
to the left of the cursor.
So, the solution is this: Instead of checking the inset at the
left of the cursor only, we should also check the inset at the
right of the cursor. (This will have an unintentional side-effect
that if you have two insets immediately next to each others, you
can risk that you get the wrong one when you click. Fixing this
properly is a bit more work, but the above fix for now should
go into 1.0.1.)
Greets,
Asger