View Single Post
  #15  
Old 09-02-2011, 05:35 PM
Emera Emera is offline
Delterian Hybrid
Emera's Avatar
Join Date: Mar 2011
Location: Newcastle Upon-Tyne
Posts: 1,704
Emera is a jewel in the roughEmera is a jewel in the rough
Quote:
Originally Posted by Mark Sir Link View Post
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(132);

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.
__________________
Reply With Quote