From d0afdcccb5f5c44004271267859890e69ac64b1b Mon Sep 17 00:00:00 2001 From: Yuri Kobets Date: Sun, 23 Aug 2026 01:52:33 +0300 Subject: [PATCH] fix(color_picker) set runAsync timeout to 60ms --- color_picker/plugin.toml | 2 +- color_picker/service.luau | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/color_picker/plugin.toml b/color_picker/plugin.toml index 42a5a6bd..02d73bff 100644 --- a/color_picker/plugin.toml +++ b/color_picker/plugin.toml @@ -3,7 +3,7 @@ id = "oldirtty/color_picker" name = "Color Picker" description = "Pick a color from your screen with hyprpicker." license = "MIT" -version = "1.0.5" +version = "1.0.6" plugin_api = 9 icon = "palette" dependencies = ["hyprpicker"] diff --git a/color_picker/service.luau b/color_picker/service.luau index 7c635914..b5a0fbb4 100644 --- a/color_picker/service.luau +++ b/color_picker/service.luau @@ -210,7 +210,7 @@ local function runPicker(onResult: (string?, string?) -> ()) noctalia.copyToClipboard(copyText, "text/plain;charset=utf-8") onResult(hex, copyText) - end) + end, 60000) end --==============================================