How do I set a fixed window size for a GTK+ app? I have:
gtk_window_set_default_size(GTK_WINDOW(mainWindow), 400, 300);
gtk_window_set_policy (GTK_WINDOW(mainWindow), FALSE, FALSE, FALSE);
but the window gets very small. There are no widgets yet.
Use
gtk_window_set_resizable
function for this purposethis must solve the pblm