Quote:
Originally Posted by Mark Sir Link
I can't speak to the size of the text since I haven't actually seen it but you could set an icon size to force a certain height if setting height itself does nothing.
seticonsize(1,32);
|
Yes this seemed to work. Thank you ever so much.
PHP Code:
new GuiTextListCtrl("Class_TextList1") {
profile = GuiTextListProfile;
height = 34;
horizsizing = "width";
sortcolumn = 134406400;
sortmode = "value";
width = 312;
updateclasseslist();
profile.fonttype = "Tempsitc";
profile.fontsize = 15;
seticonsize(1, 32);
}
I think my problem was that the height of the text was greater than the height of the row, so it made it seem invisible. Thank you.