Conversation
4b1a0e6 to
d334252
Compare
|
thank you - this certainly fixes the wrapping issue for me! there's one more minor issue now though that might be fixed here as well: pdlua sets the line width to 0 for shapes without border. the following line will add a border on zoom though: pure-data/tcl/pd_canvaszoom.tcl Line 426 in d9639d2 do you think it would be valid to add a check for |
|
yes sure! Thanks for finding that. In fact I think the whole line is useless. OTOH I just realized that my "fix text width" solution is actually buggy, because Tk stores the width value as integer... I'll need to add a new tag I'm afraid. |
- use '_w' tag for both text and non-text - don't force zero-width to 1
af4b36f to
1832cfe
Compare
|
Hope it's OK now. |
thanks - lgtm! |
|
Cool. @umlaeute maybe this can be merged to develop? |
|
BTW I fixed a rounding bug with default_zoom when is less than 100%. |
fixes #3002
when zooming, the
-widthoption of text items needs to be refreshed.This is only needed by externals such as
pdlua, since Pd itself doesn't use the-widthoption.Also this PR allows to display smaller texts (down to font size 2, instead of 4 before).