Skip to content

Commit 823cd57

Browse files
committed
fixup! start app with hidden log fixed;
1 parent 5584cb0 commit 823cd57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rdpWrapper/MainForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ public MainForm() {
4343

4444
var sizeSpan = Height - ClientSize.Height;
4545
MinimumSize = new Size { Width = Width, Height = sizeSpan + gbxGeneralSettings.Height + gbxStatus.Height + mainMenu.Height };
46-
SetLogVisible(false);
4746

4847
var showLog = new UserOption("showLog", true, showLogToolStripMenuItem, settings);
4948
showLog.Changed += delegate {
5049
SetLogVisible(showLogToolStripMenuItem.Checked);
5150
};
51+
SetLogVisible(showLog.Value);
5252
var portable = new UserOption("portable", true, storeSeiingsInFileToolStripMenuItem, settings);
5353
portable.Changed += delegate {
5454
settings.IsPortable = portable.Value;

0 commit comments

Comments
 (0)