mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
- Add Author name in plugin list
This commit is contained in:
parent
e48761a296
commit
579f8c8b9e
2 changed files with 11 additions and 3 deletions
|
|
@ -53,7 +53,7 @@
|
|||
<system:String x:Key="newPriority">New Priority:</system:String>
|
||||
<system:String x:Key="priority">Priority</system:String>
|
||||
<system:String x:Key="pluginDirectory">Plugin Directory</system:String>
|
||||
<system:String x:Key="author">Author</system:String>
|
||||
<system:String x:Key="author">Author:</system:String>
|
||||
<system:String x:Key="plugin_init_time">Init time:</system:String>
|
||||
<system:String x:Key="plugin_query_time">Query time:</system:String>
|
||||
|
||||
|
|
|
|||
|
|
@ -690,9 +690,16 @@
|
|||
Padding="0 12 0 0" >
|
||||
<ItemsControl Style="{DynamicResource SettingGrid}">
|
||||
<StackPanel Style="{StaticResource TextPanel}"
|
||||
Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0 0 -14 0">
|
||||
<TextBlock Text="{DynamicResource plugin_init_time}"
|
||||
Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0 0 -14 0">
|
||||
<TextBlock Text="{DynamicResource author}"
|
||||
FontSize="11" Margin="10 0 0 0" MaxWidth="100" Foreground="#8F8F8F" />
|
||||
<TextBlock Text="{Binding PluginPair.Metadata.Author}" FontSize="11" Foreground="#8F8F8F"
|
||||
Margin="5 0 0 0" MaxWidth="100" />
|
||||
<TextBlock Text="|"
|
||||
FontSize="11" Margin="5 0 0 0" MaxWidth="100" Foreground="#8F8F8F"
|
||||
VerticalAlignment="Center" />
|
||||
<TextBlock Text="{DynamicResource plugin_init_time}"
|
||||
FontSize="11" Margin="5 0 0 0" MaxWidth="100" Foreground="#8F8F8F" />
|
||||
<TextBlock Text="{Binding InitilizaTime}" FontSize="11" Foreground="#8F8F8F"
|
||||
Margin="5 0 0 0" MaxWidth="100" />
|
||||
<TextBlock Text="|"
|
||||
|
|
@ -806,6 +813,7 @@
|
|||
-->
|
||||
</Grid>
|
||||
</TabItem>
|
||||
|
||||
<TabItem>
|
||||
<TabItem.Header>
|
||||
<Grid>
|
||||
|
|
|
|||
Loading…
Reference in a new issue