| 924 | } |
| 925 | |
| 926 | void TextBox::set_max_height(float newMaxHeight) { |
| 927 | if(maxHeight != newMaxHeight) { |
| 928 | maxHeight = newMaxHeight; |
| 929 | needsRebuild = true; |
| 930 | } |
| 931 | } |
| 932 | |
| 933 | void TextBox::set_ellipsis(bool newEllipsis) { |
| 934 | if(ellipsis != newEllipsis) { |