Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitarCC committed Aug 25, 2016
2 parents f77a3da + 6473a49 commit c89765e
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions BExplorer/BetterExplorer/MainWindow.xaml.cs
Expand Up @@ -1465,8 +1465,12 @@ public partial class MainWindow : Fluent.RibbonWindow {
}

btnNavigationPane.IsChecked = (int)rks.GetValue("NavigationPaneEnabled", 1) == 1;
chkShowCheckBoxes.IsChecked = _ShellListView.ShowCheckboxes;

this._ShellListView.ShowCheckboxes = (int)rks.GetValue("ShowCheckboxes", 0) == 1;
chkShowCheckBoxes.IsChecked = _ShellListView.ShowCheckboxes;

chkIsTerraCopyEnabled.IsChecked = (int)rks.GetValue("FileOpExEnabled", 0) == 1;

chkIsCFO.IsChecked = (int)rks.GetValue("IsCustomFO", 0) == 1;
_IsrestoreTabs = (int)rks.GetValue("IsRestoreTabs", 1) == 1;

Expand Down Expand Up @@ -1814,10 +1818,11 @@ public partial class MainWindow : Fluent.RibbonWindow {
rks.SetValue("AutoSwitchLibraryTools", Convert.ToInt32(asLibrary));
rks.SetValue("AutoSwitchDriveTools", Convert.ToInt32(asDrive));
rks.SetValue("AutoSwitchVirtualDriveTools", Convert.ToInt32(asVirtualDrive));
//rks.SetValue("IsLastTabCloseApp", Convert.ToInt32(this.IsCloseLastTabCloseApp));
//rks.SetValue("IsLastTabCloseApp", Convert.ToInt32(chkIsLastTabCloseApp.IsChecked.Value));
rks.SetValue("ShowCheckboxes", Convert.ToInt32(this._ShellListView.ShowCheckboxes));
//rks.SetValue("IsLastTabCloseApp", Convert.ToInt32(this.IsCloseLastTabCloseApp));
//rks.SetValue("IsLastTabCloseApp", Convert.ToInt32(chkIsLastTabCloseApp.IsChecked.Value));

rks.SetValue("IsConsoleShown", this.IsConsoleShown ? 1 : 0);
rks.SetValue("IsConsoleShown", this.IsConsoleShown ? 1 : 0);
rks.SetValue("TabBarAlignment", this.TabbaBottom.IsChecked == true ? "bottom" : "top");

if (this.IsPreviewPaneEnabled)
Expand Down

0 comments on commit c89765e

Please sign in to comment.