This shows you the differences between two versions of the page.
| — | roadmap:infinite_loop_bug [2015/11/22 10:13] (current) – created deva | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | In plugingui.cc insert tab character somewhere in: | ||
| + | <code c++> | ||
| + | lbl_version-> | ||
| + | </ | ||
| + | Now the '' | ||
| + | <code c++> | ||
| + | while(true) | ||
| + | { | ||
| + | int textWidth = font.textWidth(visibleText); | ||
| + | if(textWidth <= (w - BORDER - 4 + 3)) | ||
| + | { | ||
| + | break; | ||
| + | } | ||
| + | |||
| + | </ | ||
| + | |||
| + | The if conditional never seems to be activated... | ||