Skip to content

Commit

Permalink
List rendering timeout changed from 0.5s to 0.1s
Browse files Browse the repository at this point in the history
  • Loading branch information
chajr committed May 22, 2022
1 parent fbc92b4 commit 589d685
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.

## 0.6.0.0 - 2020-08-09
## 0.6.1.0 - 2022-05-22
### Changed
* List rendering timeout changed from 0.5s to 0.1s

**## 0.6.0.0 - 2020-08-09
### Added
* An added helper to run commands in multiple processes
* Styles for multiple process progress bar
Expand All @@ -11,7 +15,7 @@ All notable changes to this project will be documented in this file.
* README description
### Changed
* PSR-12 fixes
* Fixes from CI/CD services
* Fixes from CI/CD services**

## 0.5.0.0 - 2020-07-05
### Added
Expand Down
2 changes: 1 addition & 1 deletion src/MultiSelect.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ protected function renderList(array $dataList, bool $isSingleSelect): array

$this->renderListWithSelection($dataList, $cursor, $selectedOptions);

\usleep(500000);
\usleep(100000);
}

return $selectedOptions;
Expand Down

0 comments on commit 589d685

Please sign in to comment.