jury and seance positions added to dropdown (they were supported from the start)

This commit is contained in:
cidoku 2025-03-13 18:02:14 -03:00
parent 0e3dc1a13a
commit 8ffae77317

View File

@ -1365,7 +1365,8 @@ class GUI(QtGui.QWidget):
self.colordropdown.setToolTip('Change the color of your message') self.colordropdown.setToolTip('Change the color of your message')
self.posdropdown = QtGui.QComboBox(self) self.posdropdown = QtGui.QComboBox(self)
self.posdropdown.addItems(["def", "pro", "wit", "hld", "hlp", "jud"]) self.posdropdown_defaults = ["def", "pro", "wit", "hld", "hlp", "jud", "jur", "sea"]
self.posdropdown.addItems(self.posdropdown_defaults)
self.posdropdown.currentIndexChanged.connect(self.set_position) self.posdropdown.currentIndexChanged.connect(self.set_position)
self.posdropdown.setToolTip('Select your position in the courtroom') self.posdropdown.setToolTip('Select your position in the courtroom')