mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Use ToInt32 instead of explicit converting
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
parent
047d4ddc34
commit
43df5e1744
1 changed files with 1 additions and 1 deletions
|
|
@ -157,7 +157,7 @@ namespace Flow.Launcher.Plugin.Explorer.Search.Everything
|
|||
Type = EverythingApiDllImport.Everything_IsFolderResult(idx) ? ResultType.Folder :
|
||||
EverythingApiDllImport.Everything_IsFileResult(idx) ? ResultType.File :
|
||||
ResultType.Volume,
|
||||
Score = (int)EverythingApiDllImport.Everything_GetResultRunCount( (uint)idx),
|
||||
Score = Convert.ToInt32(EverythingApiDllImport.Everything_GetResultRunCount((uint)idx)),
|
||||
HighlightData = EverythingHighlightStringToHighlightList(EverythingApiDllImport.Everything_GetResultHighlightedFileName((uint)idx))
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue