diff options
author | Argn0 <[email protected]> | 2022-05-25 20:27:27 +0200 |
---|---|---|
committer | Argn0 <[email protected]> | 2022-05-25 20:27:27 +0200 |
commit | 31b10f9a41819c319c46700c6adf2b628d440ee1 (patch) | |
tree | 7fa35739f6afb620de53d7a47344b6ef345d6c9b | |
parent | 0261d36a47e6a3024f8ecb355bb24f26097fd282 (diff) | |
download | SponsorBlock-31b10f9a41819c319c46700c6adf2b628d440ee1.tar.gz SponsorBlock-31b10f9a41819c319c46700c6adf2b628d440ee1.zip |
change timeout to 50ms
-rw-r--r-- | src/components/CategorySkipOptionsComponent.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/CategorySkipOptionsComponent.tsx b/src/components/CategorySkipOptionsComponent.tsx index bf010067..905c3b3d 100644 --- a/src/components/CategorySkipOptionsComponent.tsx +++ b/src/components/CategorySkipOptionsComponent.tsx @@ -193,7 +193,7 @@ class CategorySkipOptionsComponent extends React.Component<CategorySkipOptionsPr // Make listener get called this.setBarColorTimeout = setTimeout(() => { Config.config.barTypes = Config.config.barTypes; - }, 300); + }, 50); } } |