[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

Re: [pygame] removing border on pygame windows



Matt Ficken wrote:
How do I tell pygame to ask X to not put a border (border, titlebar,
close button, etc...) on a pygame window. I know it can be done
because I've done it in Tkinter and GTK GUIs, but I don't know how to
do that in pygame.
when calling display.set_mode, add the flag "NOFRAME". this is done in the "vgrade" example that comes with pygame if you want to see it in action.