mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix: 🐛 check autocomplete and copy text for Result equality (#2201)
This commit is contained in:
parent
e1c63af061
commit
cdff8fcd7c
1 changed files with 2 additions and 0 deletions
|
|
@ -161,6 +161,8 @@ namespace Flow.Launcher.Plugin
|
|||
|
||||
var equality = string.Equals(r?.Title, Title) &&
|
||||
string.Equals(r?.SubTitle, SubTitle) &&
|
||||
string.Equals(r?.AutoCompleteText, AutoCompleteText) &&
|
||||
string.Equals(r?.CopyText, CopyText) &&
|
||||
string.Equals(r?.IcoPath, IcoPath) &&
|
||||
TitleHighlightData == r.TitleHighlightData;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue