A rather brief question:
How would I make text within a combo box insensitive/diabled, using pygtk (not GTK3)?
Asked
Active
Viewed 87 times
-4

TellMeWhy
- 315
- 3
- 17
-
This one shows no prior research at all (ref: http://meta.stackoverflow.com/q/306049/3001761) – jonrsharpe Sep 14 '15 at 18:06
-
You may have done, but *the question doesn't show it*. – jonrsharpe Sep 16 '15 at 07:17
-
I agree with @jonrsharpe. If the answer did not work, then you should clarify your question further. Also, your question states "using pygtk (not GTK3)" and that's what the answer was based on, but in your comment you say that you are looking for Gtk3. – FirstName LastName Sep 30 '15 at 00:43
-
@AlastorMoody Oh yeah... lol - I got mixed up when I looked at this question ;D – TellMeWhy Sep 30 '15 at 10:54
1 Answers
2
There is a method:
combo.disable_activate()
that will disable the activate signal on the entry widget in the combo box.
you can find more information on the reference at http://www.pygtk.org/pygtk2reference/class-gtkcombo.html

FirstName LastName
- 1,891
- 5
- 23
- 37