[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

@@ -27,7 +27,8 @@
Visibility="{Binding MainWindowVisibility, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Visibility="{Binding MainWindowVisibility, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
WindowStartupLocation="Manual" WindowStartupLocation="Manual"
WindowStyle="None" WindowStyle="None"
mc:Ignorable="d"> mc:Ignorable="d"
MinHeight="0">
<Grid x:Name="RootGrid" MouseDown="OnMouseDown"> <Grid x:Name="RootGrid" MouseDown="OnMouseDown">
<!-- We set the background here because the Acrylic can be too translucent / background too bright on Light theme --> <!-- 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 get
{ {
return _settings.MaxResultsToShow * 75; return (_settings.MaxResultsToShow * 50) + 40;
} }
} }