Skip to content

Commit 81e4793

Browse files
committed
Change init window size + name
1 parent 485b409 commit 81e4793

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mujoco_viewer/mujoco_viewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def __init__(self, model, data):
4141
glfw.init()
4242
width, height = glfw.get_video_mode(glfw.get_primary_monitor()).size
4343
self.window = glfw.create_window(
44-
width // 2, height // 2, "mujoco", None, None)
44+
width, height, "mujoco-python-viewer", None, None)
4545
glfw.make_context_current(self.window)
4646
glfw.swap_interval(1)
4747

0 commit comments

Comments
 (0)