(
self,
position="topleft",
title="Full Screen",
title_cancel="Exit Full Screen",
force_separate_button=False,
**kwargs
)
| 51 | ] |
| 52 | |
| 53 | def __init__( |
| 54 | self, |
| 55 | position="topleft", |
| 56 | title="Full Screen", |
| 57 | title_cancel="Exit Full Screen", |
| 58 | force_separate_button=False, |
| 59 | **kwargs |
| 60 | ): |
| 61 | super().__init__() |
| 62 | self._name = "Fullscreen" |
| 63 | self.options = remove_empty( |
| 64 | position=position, |
| 65 | title=title, |
| 66 | title_cancel=title_cancel, |
| 67 | force_separate_button=force_separate_button, |
| 68 | **kwargs |
| 69 | ) |
nothing calls this directly
no test coverage detected