mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
bugfix
This commit is contained in:
parent
569f69a270
commit
bcd2b8d658
4 changed files with 4 additions and 3 deletions
|
|
@ -94,7 +94,6 @@
|
||||||
LastChildFill="True">
|
LastChildFill="True">
|
||||||
<Button
|
<Button
|
||||||
Width="70"
|
Width="70"
|
||||||
Margin="10"
|
|
||||||
HorizontalAlignment="Right"
|
HorizontalAlignment="Right"
|
||||||
Click="BrowseButton_Click"
|
Click="BrowseButton_Click"
|
||||||
DockPanel.Dock="Right"
|
DockPanel.Dock="Right"
|
||||||
|
|
@ -112,7 +111,7 @@
|
||||||
HorizontalAlignment="Left"
|
HorizontalAlignment="Left"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
FontSize="14"
|
FontSize="14"
|
||||||
Text="{DynamicResource enable}" />
|
Text="{DynamicResource flowlauncher_plugin_program_enabled}" />
|
||||||
<CheckBox x:Name="Chkbox"
|
<CheckBox x:Name="Chkbox"
|
||||||
Grid.Row="1"
|
Grid.Row="1"
|
||||||
Grid.Column="1"
|
Grid.Column="1"
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@
|
||||||
<system:String x:Key="flowlauncher_plugin_program_add">Add</system:String>
|
<system:String x:Key="flowlauncher_plugin_program_add">Add</system:String>
|
||||||
<system:String x:Key="flowlauncher_plugin_program_name">Name</system:String>
|
<system:String x:Key="flowlauncher_plugin_program_name">Name</system:String>
|
||||||
<system:String x:Key="flowlauncher_plugin_program_enable">Enable</system:String>
|
<system:String x:Key="flowlauncher_plugin_program_enable">Enable</system:String>
|
||||||
|
<system:String x:Key="flowlauncher_plugin_program_enabled">Enabled</system:String>
|
||||||
<system:String x:Key="flowlauncher_plugin_program_disable">Disable</system:String>
|
<system:String x:Key="flowlauncher_plugin_program_disable">Disable</system:String>
|
||||||
<system:String x:Key="flowlauncher_plugin_program_location">Location</system:String>
|
<system:String x:Key="flowlauncher_plugin_program_location">Location</system:String>
|
||||||
<system:String x:Key="flowlauncher_plugin_program_all_programs">All Programs</system:String>
|
<system:String x:Key="flowlauncher_plugin_program_all_programs">All Programs</system:String>
|
||||||
|
|
|
||||||
|
|
@ -128,7 +128,7 @@
|
||||||
</DataTemplate>
|
</DataTemplate>
|
||||||
</GridViewColumn.CellTemplate>
|
</GridViewColumn.CellTemplate>
|
||||||
</GridViewColumn>
|
</GridViewColumn>
|
||||||
<GridViewColumn Header="{DynamicResource flowlauncher_plugin_program_enable}">
|
<GridViewColumn Header="{DynamicResource flowlauncher_plugin_program_enabled}">
|
||||||
<GridViewColumn.CellTemplate>
|
<GridViewColumn.CellTemplate>
|
||||||
<DataTemplate>
|
<DataTemplate>
|
||||||
<TextBlock
|
<TextBlock
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,7 @@ namespace Flow.Launcher.Plugin.Program.Views
|
||||||
_settings.EnableDescription = value;
|
_settings.EnableDescription = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool HideAppsPath
|
public bool HideAppsPath
|
||||||
{
|
{
|
||||||
get => _settings.HideAppsPath;
|
get => _settings.HideAppsPath;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue