eclipse-nattable / nattable

High performance SWT data grid
https://eclipse.dev/nattable/
Eclipse Public License 2.0
11 stars 6 forks source link

Impl #55 - [TextPainter] add option to disable word cutting #56

Closed fipro78 closed 5 months ago

fipro78 commented 5 months ago

Added the cutText configuration with corresponding getter and setter methods, which is evaluated in modifyTextToDisplay(). Additionally added a minor performance improvement, by pre compiling the NEW_LINE_REGEX to a Pattern to avoid the constant Pattern compile process on String#split.