mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
- Fix Display Preview Panel when First Launch
- Change Setting glyph and description
This commit is contained in:
parent
6d9135169d
commit
65d4aeddea
4 changed files with 8 additions and 4 deletions
|
|
@ -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 -->
|
||||
|
|
|
|||
|
|
@ -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}">
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -762,7 +762,7 @@
|
|||
Style="{DynamicResource SideControlCheckBox}"
|
||||
ToolTip="{DynamicResource AlwaysPreviewToolTip}" />
|
||||
<TextBlock Style="{StaticResource Glyph}">
|
||||

|
||||

|
||||
</TextBlock>
|
||||
</ItemsControl>
|
||||
</Border>
|
||||
|
|
|
|||
Loading…
Reference in a new issue