I'm writing by hand an application that use Gtk+
. I'm using a GtkGrid
to hold my GtkWidget
s, but I can't put a GtkWidget
into specific colum, as the second parameter of gtk_grid_attach()
function says. E.g, the last element was placed into the 4-column, if I try to put into the 6-column it does not works; the GtkWidget
is auto placed by the gtk into the 5-column.
↧
How to put a widget into any column inside a grid?
↧