We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b38462e commit f3923c8Copy full SHA for f3923c8
backend/src/acine/scheduler/managed_runtime.py
@@ -24,7 +24,8 @@ async def init(self):
24
self.ih = InputHandler(
25
routine.launch_config.window_name, cmd=routine.launch_config.start_command
26
)
27
- await self.ih.resize(routine.launch_config.width, routine.launch_config.height)
+ pos = routine.launch_config.initial_position
28
+ await self.ih.resize(pos.width, pos.height) # TODO: self.ih takes a Position?
29
self.gc = GameCapture(await self.ih.win.title)
30
self.controller = BuiltinController(self.gc, self.ih)
31
self.rt = Runtime(
0 commit comments