vote up 0 vote down star

I want main window to "gray, freeze, stop working", when some other window is opened. Is there some default way to do it? Pretty much the same as gtk.Dialog is working.

EDIT: Currently I'm just replacing all contents by a text line, but I guess there should be better way.

flag

1 Answer

vote up 2 vote down check

You really shouldn't try to make a program become unresponsive. If what you want to do is stop the user from using the window, make the dialog modal: gtk.Dialog.set_modal(True)

link|flag
Ah, I just figured it out. The window that should be active should be set to modal, yes. Too bad GTK really has some wierd way of naming functions. – iElectric Aug 25 at 15:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.