gcombobox with Gtk2 will not work for item strings less than 3 characters (not the case when using tcltk or the originial gWidgets packages with Gtk2). See 3 examples below where I increment the length of the strings to be presented in the gcombobox:
w=gwindow()
gcombobox(c("a","b"),container=w)
Error in [[.GObject(x, member, where = ) :
Cannot find 'setWidthRequest' for classes GtkComboBox, GtkBin, GtkContainer, GtkWidget, GtkObject, GInitiallyUnowned, GObject, RGtkObject
gcombobox(c("aa","bb"),container=w)
Error in [[.GObject(x, member, where = ) :
Cannot find 'setWidthRequest' for classes GtkComboBox, GtkBin, GtkContainer, GtkWidget, GtkObject, GInitiallyUnowned, GObject, RGtkObject
gcombobox(c("aaa","bbb"),container=w)
Object of class GComboBoxNoEntry
gcombobox with Gtk2 will not work for item strings less than 3 characters (not the case when using tcltk or the originial gWidgets packages with Gtk2). See 3 examples below where I increment the length of the strings to be presented in the gcombobox:
thanks Pat