Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm learning wxPython and very often figure out how some example scripts work. I ran this script http://zetcode.com/wxpython/thetetrisgame/ and noticed that it blinks all the time especially when there are many blocks in the bottom of the game area. I added wx.NO_FULL_REPAINT_ON_RESIZE style to initialization of the panel but it didn't help. I wonder how to fix it. I think it's important because that way of behavior makes creating games or other dynamic UI in wxPython impossible.

share|improve this question
I do not see any double buffering in the code. This is common way how to prevent flickering. See this answer is an example of double buffering preventing flickering. – Fenikso Oct 18 '12 at 16:18

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.