mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-10 05:06:36 +02:00
[PT Run] Fix Max number of results setting (#30224)
This commit is contained in:
@@ -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 -->
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ namespace PowerLauncher.ViewModel
|
|||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
return _settings.MaxResultsToShow * 75;
|
return (_settings.MaxResultsToShow * 50) + 40;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user