Greetings! Congrats on the new rc release.

I have a problem on dual monitor linux where creating a fullscreen Window
ignores the requested screen.

The fullscreen window is created on the screen where the mouse is located,
even if that is not the screen passed into pyglet.window.Window.

Sample code below, to test, run it from a terminal on one screen, the
window will open fullscreen there, run it from the other screen and it will
run fullscreen on the other screen.

import pyglet
platform = pyglet.window.get_platform()
display = platform.get_default_display()
screens = display.get_screens()
window = pyglet.window.Window(fullscreen=True, screen=screens[0])
while True:
    pass

-- 
You received this message because you are subscribed to the Google Groups 
"pyglet-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/pyglet-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to