How to control number of leading spaces in a GtkWidget?
- by Jack
How do I set the leading spaces in a GtkWidget? as you can see into below imagem, username/password widgets are a bit away from horizontal line when the window begins
My code:
GtkWidget *window;
GtkWidget *login_label;
GtkWidget *username_label, *password_label;
GtkWidget *username_entry, *password_entry;
GtkWidget *ok_button;
…