- Fix Display Preview Panel when First Launch

- Change Setting glyph and description
This commit is contained in:
DB p 2022-11-26 03:51:21 +09:00
parent 6d9135169d
commit 65d4aeddea
4 changed files with 8 additions and 4 deletions

View file

@ -66,8 +66,8 @@
<system:String x:Key="querySearchPrecisionToolTip">Changes minimum match score required for results.</system:String>
<system:String x:Key="ShouldUsePinyin">Search with Pinyin</system:String>
<system:String x:Key="ShouldUsePinyinToolTip">Allows using Pinyin to search. Pinyin is the standard system of romanized spelling for translating Chinese.</system:String>
<system:String x:Key="AlwaysPreview">Always open preview when start search</system:String>
<system:String x:Key="AlwaysPreviewToolTip">If uncheck, preview not showing when start launch. Please use F1 key</system:String>
<system:String x:Key="AlwaysPreview">Always display preview panel when open flow</system:String>
<system:String x:Key="AlwaysPreviewToolTip">If uncheck, preview not showing when start flow. Please use F1 key to toggle.</system:String>
<system:String x:Key="shadowEffectNotAllowed">Shadow effect is not allowed while current theme has blur effect enabled</system:String>
<!-- Setting Plugin -->

View file

@ -328,7 +328,10 @@
<ColumnDefinition Width="*" />
<ColumnDefinition Width="0.75*" MinWidth="250" />
</Grid.ColumnDefinitions>
<StackPanel x:Name="ResultArea" Grid.Column="0">
<StackPanel
x:Name="ResultArea"
Grid.Column="0"
Grid.ColumnSpan="2">
<Border Style="{DynamicResource WindowRadius}">
<Border.Clip>
<MultiBinding Converter="{StaticResource BorderClipConverter}">

View file

@ -106,6 +106,7 @@ namespace Flow.Launcher
WindowsInteropHelper.DisableControlBox(this);
InitProgressbarAnimation();
InitializePosition();
PreviewReset();
// since the default main window visibility is visible
// so we need set focus during startup
QueryTextBox.Focus();

View file

@ -762,7 +762,7 @@
Style="{DynamicResource SideControlCheckBox}"
ToolTip="{DynamicResource AlwaysPreviewToolTip}" />
<TextBlock Style="{StaticResource Glyph}">
&#xe8ff;
&#xe8a1;
</TextBlock>
</ItemsControl>
</Border>