Greetings!
After some hacking, I think I found the culprit, it is the algorithm that
linebreaks text in order to fit it into the given width of a dialog box. When
a single word (e.g. a path) is so long it doesn't fit into a line on its own,
it tries to step back to the last whitespace first, but that isn't reset after
each line.
Cheers!
Uli
--- xine-ui-0.99.5/src/xitk/xine-toolkit/image.c 2007-03-30 01:07:56.000000000 +0200
+++ ../xine-ui-0.99.5/src/xitk/xine-toolkit/image.c 2010-02-21 18:52:34.000000000 +0100
@@ -515,6 +515,7 @@ xitk_image_t *xitk_image_create_image_wi
xitk_font_string_extent(fs, bp, &lbearing, &rbearing, NULL, NULL, NULL);
linew = rbearing - lbearing;
+ lastws = 0;
}
p++;