Label the player checkbox in the roster editor.

(cherry picked from commit 45869c428e3b8200dd8b5967b552aa224c4840ce)
This commit is contained in:
Dan Albert 2021-06-06 13:43:34 -07:00
parent 6348317893
commit d77a174ac1

View File

@ -90,7 +90,7 @@ class PilotControls(QHBoxLayout):
self.selector.currentIndexChanged.connect(self.on_pilot_changed)
self.addWidget(self.selector)
self.player_checkbox = QCheckBox()
self.player_checkbox = QCheckBox(text="Player")
self.player_checkbox.setToolTip("Checked if this pilot is a player.")
self.on_pilot_changed(self.selector.currentIndex())
self.addWidget(self.player_checkbox)