[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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -27,7 +27,8 @@
Visibility="{Binding MainWindowVisibility, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
WindowStartupLocation="Manual"
WindowStyle="None"
mc:Ignorable="d">
mc:Ignorable="d"
MinHeight="0">
<Grid x:Name="RootGrid" MouseDown="OnMouseDown">
<!-- We set the background here because the Acrylic can be too translucent / background too bright on Light theme -->

View File

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