(self)
| 145 | self.combobox.set_active(0) |
| 146 | |
| 147 | def combobox_changed(self): |
| 148 | model = self.combobox.get_model() |
| 149 | row = model[self.combobox.get_active()] |
| 150 | padname, = row |
| 151 | self.player.switch(padname) |
| 152 | |
| 153 | def create_ui(self): |
| 154 | vbox = gtk.VBox() |