Mercurial > libervia-backend
comparison sat_frontends/jp/xmlui_manager.py @ 3212:89d97776fd34
jp (xmlui): added missing `disp` method in XMLUIPanel
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 06 Mar 2020 18:51:04 +0100 |
parents | 559a625a236b |
children | 2f0be2b7de68 |
comparison
equal
deleted
inserted
replaced
3211:4252176ad993 | 3212:89d97776fd34 |
---|---|
512 | 512 |
513 @property | 513 @property |
514 def command(self): | 514 def command(self): |
515 return self.host.command | 515 return self.host.command |
516 | 516 |
517 def disp(self, *args, **kwargs): | |
518 self.host.disp(*args, **kwargs) | |
519 | |
517 async def show(self, workflow=None, read_only=False, values_only=False): | 520 async def show(self, workflow=None, read_only=False, values_only=False): |
518 """display the panel | 521 """display the panel |
519 | 522 |
520 @param workflow(list, None): command to execute if not None | 523 @param workflow(list, None): command to execute if not None |
521 put here for convenience, the main workflow is the class attribute | 524 put here for convenience, the main workflow is the class attribute |