Sets a window modal or non-modal. Modal windows prevent interaction with other windows in the same application.

Property definitions

gtk $ GtkWindow :: modal=
	# Sets a window modal or non-modal. Modal windows prevent interaction with other windows in the same application.
	fun modal=(is_modal: Bool) `{
		gtk_window_set_modal(self, is_modal);
	`}
lib/gtk/v3_4/gtk_core.nit:237,2--240,3