mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-23 20:47:25 -08:00
optimize<Upgrade>: remove auto-upgrade feature
This commit is contained in:
parent
b76bc96ee7
commit
c6f99287e7
1 changed files with 2 additions and 9 deletions
|
@ -65,7 +65,6 @@
|
||||||
<RowDefinition Height="28"/>
|
<RowDefinition Height="28"/>
|
||||||
<RowDefinition Height="28"/>
|
<RowDefinition Height="28"/>
|
||||||
<RowDefinition Height="28"/>
|
<RowDefinition Height="28"/>
|
||||||
<RowDefinition Height="28"/>
|
|
||||||
</Grid.RowDefinitions>
|
</Grid.RowDefinitions>
|
||||||
|
|
||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
|
@ -132,22 +131,16 @@
|
||||||
</ComboBox.Resources>
|
</ComboBox.Resources>
|
||||||
</ComboBox>
|
</ComboBox>
|
||||||
|
|
||||||
<!-- Enable Check For Update -->
|
|
||||||
<CheckBox
|
|
||||||
Grid.Row="3" Grid.Column="1"
|
|
||||||
Content="{DynamicResource Text.Preference.CheckUpdate}"
|
|
||||||
IsChecked="{Binding Source={x:Static models:Preference.Instance}, Path=General.CheckForUpdate, Mode=TwoWay}"/>
|
|
||||||
|
|
||||||
<!-- Enable Dark Theme -->
|
<!-- Enable Dark Theme -->
|
||||||
<CheckBox
|
<CheckBox
|
||||||
Grid.Row="4" Grid.Column="1"
|
Grid.Row="3" Grid.Column="1"
|
||||||
Content="{DynamicResource Text.Preference.UseDarkTheme}"
|
Content="{DynamicResource Text.Preference.UseDarkTheme}"
|
||||||
IsChecked="{Binding Source={x:Static models:Preference.Instance}, Path=General.UseDarkTheme, Mode=TwoWay}"
|
IsChecked="{Binding Source={x:Static models:Preference.Instance}, Path=General.UseDarkTheme, Mode=TwoWay}"
|
||||||
Checked="ChangeTheme" Unchecked="ChangeTheme"/>
|
Checked="ChangeTheme" Unchecked="ChangeTheme"/>
|
||||||
|
|
||||||
<!-- Restore Windows -->
|
<!-- Restore Windows -->
|
||||||
<CheckBox
|
<CheckBox
|
||||||
Grid.Row="5" Grid.Column="1"
|
Grid.Row="4" Grid.Column="1"
|
||||||
Content="{DynamicResource Text.Preference.RestoreTabs}"
|
Content="{DynamicResource Text.Preference.RestoreTabs}"
|
||||||
IsChecked="{Binding Source={x:Static models:Preference.Instance}, Path=Restore.IsEnabled, Mode=TwoWay}"/>
|
IsChecked="{Binding Source={x:Static models:Preference.Instance}, Path=Restore.IsEnabled, Mode=TwoWay}"/>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
Loading…
Reference in a new issue