Update screenshot in readme

This commit is contained in:
Pavle Portic 2019-02-03 14:55:00 +01:00
parent 361aa988bc
commit f0b9eaa0c3
Signed by: TheEdgeOfRage
GPG Key ID: 6758ACE46AA2A849
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# Mandelbrot
A simple python script that draws an interactive mandelbrot set in the terminal
![Mandelbrot](https://i.imgur.com/OfKPse8.png)
![Mandelbrot](https://i.imgur.com/shZLyxK.png)
## Keybindings
- Arrow keys - Move around

View File

@ -87,7 +87,7 @@ def handle_keyboard(char):
global MONOCHROME
global COLOR_COUNT
if char == 113:
if char == 113: # Quit
return True
elif char == 258: # Down
Y_MID += Y_SCALE * (1 / (2 ** (ZOOM_LEVEL + 1)))