(overlay_type, window)
| 19 | from interaction_server import InteractionServer |
| 20 | |
| 21 | def changefunc(overlay_type, window): |
| 22 | if overlay_type == "background": |
| 23 | LayerShell.set_layer(window, LayerShell.Layer.BACKGROUND) |
| 24 | print("background") |
| 25 | elif overlay_type == "overlay": |
| 26 | LayerShell.set_layer(window, LayerShell.Layer.OVERLAY) |
| 27 | print("overlay") |
| 28 | |
| 29 | def on_activate(app): |
| 30 | # Configure the complete surface before mapping it. Presenting the window |
nothing calls this directly
no outgoing calls
no test coverage detected