comparison libervia/tui/base.py @ 4079:10b6ad569157

version: use standard Python's `dev0` instead of Libervia specific `D` for dev version
author Goffi <goffi@goffi.org>
date Tue, 06 Jun 2023 12:41:53 +0200
parents 15055a00162c
children 0d7bb4df2343
comparison
equal deleted inserted replaced
4078:15055a00162c 4079:10b6ad569157
481 else: 481 else:
482 if self.__saved_overlay: 482 if self.__saved_overlay:
483 self.loop.widget = self.__saved_overlay 483 self.loop.widget = self.__saved_overlay
484 self.__saved_overlay = None 484 self.__saved_overlay = None
485 485
486 elif input_ == a_key['DEBUG'] and 'D' in self.bridge.version_get(): #Debug only for dev versions 486 elif input_ == a_key['DEBUG'] and '.dev0' in self.bridge.version_get(): #Debug only for dev versions
487 self.debug() 487 self.debug()
488 elif input_ == a_key['CONTACTS_HIDE']: #user wants to (un)hide the contact lists 488 elif input_ == a_key['CONTACTS_HIDE']: #user wants to (un)hide the contact lists
489 try: 489 try:
490 for wid, options in self.center_part.contents: 490 for wid, options in self.center_part.contents:
491 if self.contact_lists_pile is wid: 491 if self.contact_lists_pile is wid: