Sets the sensitivity of a widget. sensitive -> the user can interact with it.

Insensitive -> widget "grayed out" and the user can"t interact with them

Property definitions

gtk $ GtkWidget :: sensitive=
	# Sets the sensitivity of a widget. sensitive -> the user can interact with it.
	# Insensitive -> widget "grayed out" and the user can"t interact with them
	fun sensitive=(sensitive: Bool) `{
		gtk_widget_set_sensitive(self, sensitive);
	`}
lib/gtk/v3_4/gtk_core.nit:110,2--114,3