Add only one interrogation mark in settings menu
This commit is contained in:
parent
a8ea328460
commit
d92a5e1629
|
@ -64,7 +64,8 @@ class SettingsMenuDisplay(MenuDisplay):
|
|||
@property
|
||||
def values(self) -> List[str]:
|
||||
return [a[1][1] + (" : "
|
||||
+ ("?" if self.menu.waiting_for_key else a[1][0])
|
||||
+ ("?" if self.menu.waiting_for_key
|
||||
and a == self.menu.validate() else a[1][0])
|
||||
if a[1][0] else "") for a in self.menu.values]
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue