1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| def display_msa3_plus_aligt(self):
self.msa3()
self.layout.setColumnMinimumWidth(1, 250)
self.layout.setColumnMinimumWidth(6, 250)
self.less_alignment()
self.button_plus_algt.hide()
def display_msa3_less_aligt(self):
self.layout.removeWidget(self.label_msa3)
self.layout.removeWidget(self.button_file_msa3)
self.layout.removeWidget(self.button_remove_msa3)
self.layout.removeWidget(self.aligt_msa3)
self.layout.removeWidget(self.group_msa3)
self.layout.removeWidget(self.namefile_msa3)
self.layout.removeWidget(self.button_less_algt)
self.label_msa3.hide()
self.button_file_msa3.hide()
self.aligt_msa3.hide()
self.button_remove_msa3.hide()
self.group_msa3.hide()
self.namefile_msa3.hide()
self.button_less_algt.hide()
self.button_plus_algt.setVisible(True) |
Partager