Changeset 3365


Ignore:
Timestamp:
Dec 18, 2018, 8:38:49 PM (6 years ago)
Author:
Andreas Schnellbacher
Message:
  • Mouse marking from right to left: Improved the previous version for the case that the end of a line plus the line end char should be marked.
  • On trying to find a workaround for all cases, it turned out that the correction doesn't work if the last char of a line is keyword highlighted. It seems to be impossible to find a workaround for that.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/netlabs/macros/mouse.e

    r3364 r3365  
    717717      else
    718718         -- Right to left marking
    719          BeginDragCol = BeginDragCol - 1
     719         -- That doesn't work when trying to mark the last chars of a line
     720         -- before the line end and when these chars are keyword highlighted.
     721         -- Non-highlighted chars work. Therefore a workaround doesn't seem
     722         -- possible.
     723         BeginLineStr = textline( BeginDragLine)
     724         BeginLineLen = length( BeginLineStr)
     725         if BeginDragCol <= BeginLineLen + 1 then
     726            BeginDragCol = BeginDragCol - 1
     727         endif
    720728      endif
    721729
Note: See TracChangeset for help on using the changeset viewer.