How to hide the title bar in pygame?

Question:

I was wondering does anyone know how to hide the pygame task bar?

I really need this for my pygame program!

Thanks!

Asked By: David Callanan

||

Answers:

You can use pygame.NOFRAME:

screen = pygame.display.set_mode((640, 480), pygame.NOFRAME)

The documentation says:

pygame.NOFRAME display window will have no border or controls

Answered By: Hannes Karppila
Categories: questions Tags: , , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.