From cab55b835c00336d944a5937da43093be3ee480c Mon Sep 17 00:00:00 2001 From: Aydin Hassan Date: Mon, 7 May 2018 19:24:01 +0200 Subject: [PATCH] Enable cursor when exiting terminal - closes #90 --- src/CliMenu.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CliMenu.php b/src/CliMenu.php index 931ebea8..29eb5749 100644 --- a/src/CliMenu.php +++ b/src/CliMenu.php @@ -120,6 +120,7 @@ protected function configureTerminal() : void protected function tearDownTerminal() : void { $this->terminal->restoreOriginalConfiguration(); + $this->terminal->enableCursor(); } private function assertTerminalIsValidTTY() : void