This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def combo_scrolling(combobox, event): | |
| """Prevent the comboboxes from scrolling.""" | |
| combobox.emit_stop_by_name("scroll-event") | |
| values = ['item 1', 'item 2', 'item 3'] | |
| combo = gtk.combo_box_new_text() | |
| # Fill with part type options | |
| for val in values: |
NewerOlder