im having some problems to send to the front a GTK window.
I have a main window (window_root
) with a button that launches another window (window_progr
You are looking for the transient-for property of the modal window (which should be available in Glade). If the modal window needs to be transient to either of the two other windows, then you need to use gtk_window_set_transient_for() as needed since the modal can only be transient for one window at a time.