1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 12:28:22 +01:00

- Fixed bug with wrong text wrapping (Alexey Voinov <voins@voins.program.ru>)

This commit is contained in:
dan
2003-06-12 23:19:00 +00:00
parent a4c986fa1b
commit c131f14d3e
2 changed files with 2 additions and 1 deletions

View File

@@ -63,6 +63,7 @@ Changes since wmaker 0.80.1:
- fixed bug in tableview (clicked row callback got incorrect row) (Carlos Torres
<vlaadbrain@operamail.com>)
- Fixed bug in resizing a scrollview
- Fixed bug with wrong text wrapping (Alexey Voinov <voins@voins.program.ru>)
Changes since wmaker 0.80.0:

View File

@@ -101,7 +101,7 @@ fitText(char *text, WMFont *font, int width, int wrap)
i = 0;
if (wrap) {
if (text[0]=='\n')
return 1;
return 0;
do {
i++;