Skip to content

Commit 3d36513

Browse files
Add MinHeight for ListViews
1 parent 532f7ce commit 3d36513

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Flow.Launcher.Infrastructure/Logger/Log.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.Diagnostics;
1+
using System.Diagnostics;
22
using System.IO;
33
using System.Runtime.CompilerServices;
44
using NLog;
@@ -142,7 +142,7 @@ public static void Exception(string message, System.Exception e)
142142
{
143143
e = e.Demystify();
144144
#if DEBUG
145-
ExceptionDispatchInfo.Capture(e).Throw();
145+
//ExceptionDispatchInfo.Capture(e).Throw();
146146
#else
147147
if (FormatValid(message))
148148
{

Flow.Launcher/SettingWindow.xaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2460,6 +2460,7 @@
24602460
Text="{DynamicResource customQueryHotkey}" />
24612461
<ListView
24622462
Grid.Row="4"
2463+
MinHeight="160"
24632464
Margin="0,0,0,0"
24642465
Background="{DynamicResource Color02B}"
24652466
BorderBrush="DarkGray"
@@ -2519,6 +2520,7 @@
25192520
Text="{DynamicResource customQueryShortcut}" />
25202521
<ListView
25212522
Grid.Row="7"
2523+
MinHeight="160"
25222524
Margin="0,6,0,0"
25232525
Background="{DynamicResource Color02B}"
25242526
BorderBrush="DarkGray"
@@ -2578,6 +2580,7 @@
25782580
Text="Built-in Shortcuts" />
25792581
<ListView
25802582
Grid.Row="10"
2583+
MinHeight="160"
25812584
Margin="0,6,0,0"
25822585
Background="{DynamicResource Color02B}"
25832586
BorderBrush="DarkGray"

0 commit comments

Comments
 (0)