From 8a25d4541e5aa69be6fdde2d2c84c581a7a3a383 Mon Sep 17 00:00:00 2001 From: Garulf <535299+Garulf@users.noreply.github.com> Date: Mon, 1 Jul 2024 12:58:38 -0400 Subject: [PATCH] Add title highlight data --- pyflowlauncher/result.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyflowlauncher/result.py b/pyflowlauncher/result.py index 84a3dc6..626933e 100644 --- a/pyflowlauncher/result.py +++ b/pyflowlauncher/result.py @@ -49,6 +49,7 @@ class Result: AutoCompleteText: Optional[str] = None RoundedIcon: bool = False Preview: Optional[PreviewInfo] = None + TitleHighlightData: Optional[List[int]] = None def as_dict(self) -> Dict[str, Any]: return self.__dict__