Skip to content

Commit fac1b3a

Browse files
committed
Change Checkbox position right to left
1 parent 0a35810 commit fac1b3a

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed
Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
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">
911
<Grid.ColumnDefinitions>
10-
<ColumnDefinition Width="250"/>
11-
<ColumnDefinition Width="*"/>
12+
<ColumnDefinition Width="400" />
13+
<ColumnDefinition Width="*" />
1214
</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}" />
1920
</Grid>
2021
</UserControl>

0 commit comments

Comments
 (0)