[PT Run] Fix Max number of results setting (#30224)

This commit is contained in:
Stefan Markovic
2023-12-06 23:35:26 +01:00
committed by GitHub
parent c2d3143583
commit f00f2975fe
2 changed files with 3 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ namespace PowerLauncher.ViewModel
{
get
{
return _settings.MaxResultsToShow * 75;
return (_settings.MaxResultsToShow * 50) + 40;
}
}