On Fri, 2015-10-16 at 09:53 -0500, Jeremiah Benham wrote: > How can we get any of the palette windows to behave like when you > click the allegro button? When you click the allegro button it runs the get_option_recursive() function, this puts up a dialog window and calls gtk_window_set_keep_above (GTK_WINDOW (dialog), TRUE) on it. It uses gtk_dialog_run() so it is modal, that is, no other windows can receive input until you dismiss it. Palette windows are not modal, and indeed it would be bad if they even got the keyboard focus when you clicked on them, as you would then find you keypresses being ignored until you had clicked back on to the main display. At least with palettes you can dock them (right-click and choose edit palette), so this brings them within the Apple philosophy of one application one window.
Richard _______________________________________________ Denemo-devel mailing list [email protected] https://lists.gnu.org/mailman/listinfo/denemo-devel
