From f0b9eaa0c3291baadace8edfd38bdf4c0d98b8a9 Mon Sep 17 00:00:00 2001 From: Pavle Portic Date: Sun, 3 Feb 2019 14:55:00 +0100 Subject: [PATCH] Update screenshot in readme --- README.md | 2 +- mandelbrot.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 85499a0..0207d81 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/mandelbrot.py b/mandelbrot.py index 5ff0bc7..809005c 100644 --- a/mandelbrot.py +++ b/mandelbrot.py @@ -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)))