Text truncation with TextFlow solved in GMF context, bug what about GEF solely? #597
-
Found that the bug with text being cut off at the end of line is solved way back in 2010: https://bugs.eclipse.org/bugs/show_bug.cgi?id=235549 but I am still to decipher the solution (newbie to Eclipse and GEF & Draw2D especially) but it seems it's been solved for the solutions based on GMF. In my application I only use GEF and Draw2D. Can anybody give me a helping hand with understanding the solved issue and how I can apply the solution for my context (I would've expected the solution would be integrated with the GEF since then)? Nenad |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
What we found out is that using the |
Beta Was this translation helpful? Give feedback.
What we found out is that using the
ScaledGraphics
class for drawing your figures. We added some time back the option to disable the use ofScaledGraphics
when creating your rooteditpart. See the constructor ofScalableFreeformRootEditPart
for example. I hope this helps.