|
1 |
| -<UserControl x:Class="Flow.Launcher.Plugin.PluginsManager.Views.PluginsManagerSettings" |
2 |
| - xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
3 |
| - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
4 |
| - xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
5 |
| - xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
6 |
| - mc:Ignorable="d" |
7 |
| - d:DesignHeight="450" d:DesignWidth="800"> |
8 |
| - <Grid Margin="70 15 0 15"> |
| 1 | +<UserControl |
| 2 | + x:Class="Flow.Launcher.Plugin.PluginsManager.Views.PluginsManagerSettings" |
| 3 | + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| 4 | + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| 5 | + xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
| 6 | + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
| 7 | + d:DesignHeight="450" |
| 8 | + d:DesignWidth="800" |
| 9 | + mc:Ignorable="d"> |
| 10 | + <Grid Margin="70,15,0,15"> |
9 | 11 | <Grid.ColumnDefinitions>
|
10 |
| - <ColumnDefinition Width="250"/> |
11 |
| - <ColumnDefinition Width="*"/> |
| 12 | + <ColumnDefinition Width="400" /> |
| 13 | + <ColumnDefinition Width="*" /> |
12 | 14 | </Grid.ColumnDefinitions>
|
13 |
| - |
14 |
| - <TextBlock Grid.Column="0" |
15 |
| - Text="{DynamicResource plugin_pluginsmanager_plugin_settings_unknown_source}" |
16 |
| - VerticalAlignment="Center" |
17 |
| - FontSize="14"/> |
18 |
| - <CheckBox Grid.Column="1" IsChecked="{Binding WarnFromUnknownSource}" /> |
| 15 | + <CheckBox |
| 16 | + Grid.Column="0" |
| 17 | + Padding="8,0,0,0" |
| 18 | + Content="{DynamicResource plugin_pluginsmanager_plugin_settings_unknown_source}" |
| 19 | + IsChecked="{Binding WarnFromUnknownSource}" /> |
19 | 20 | </Grid>
|
20 | 21 | </UserControl>
|
0 commit comments