wlof / gameoflife

A simple Python implementation of Conway's Game of Life using the curses library.
MIT License
3 stars 0 forks source link

Handle terminal resizing #4

Closed wlof closed 9 years ago

wlof commented 9 years ago

The game exits with an error message when the terminal is resized during execution.

It'd be nice if the game would properly handle terminal resizing by changing the grid size on the fly.

wlof commented 9 years ago

Done!