About Store Forum Documentation Contact



Post Reply 
ComboBox from Source list bug?
Author Message
SamNainocard Offline
Member

Post: #1
ComboBox from Source list bug?
Not sure if it's bug but if ComboBox is create from source the list will be show incorrectly.
A newly created combobox's list display with small square like no data is set (source with no data) or with unknown text (source with data).

This can be test with ComboBox tutorial.

PHP Code:
//No data like list on combobox_c
static CChar8 *elm[]=
      {
         
"First" ,
         
"Second",
         
"Third" ,
      };
      
Gui+=combobox_a.create(Rect_C(-0.5f00.4f0.08f));
      
Gui+=combobox_c.create(combobox_a).setData(elmElms(elm)).pos(-0.4); 
PHP Code:
// Unknown text on combobox_c
static CChar8 *elm[]=
      {
         
"First" ,
         
"Second",
         
"Third" ,
      };
      
Gui+=combobox_a.create(Rect_C(-0.5f00.4f0.08f),  elmElms(elm));
      
Gui+=combobox_c.create(combobox_a).pos(-0.4); 
(This post was last modified: 07-23-2012 07:00 PM by SamNainocard.)
07-23-2012 06:59 PM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #2
RE: ComboBox from Source list bug?
Thank you!

Both samples will be fixed in next SDK
07-24-2012 03:14 PM
Find all posts by this user Quote this message in a reply
Post Reply