Skip to content

Commit

Permalink
Fix clear checkbox init state
Browse files Browse the repository at this point in the history
  • Loading branch information
agaertner authored and dlamkins committed Oct 4, 2020
1 parent 004ea8d commit 8dee200
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion KillProofModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,8 @@ private Panel BuildHomePanel(WindowBase wndw)
Size = new Point(20, 30),
Location = new Point(clearButton.Location.X - 20 - RIGHT_MARGIN, clearButton.Location.Y),
Text = "",
BasicTooltipText = ClearCheckboxTooltipText
BasicTooltipText = ClearCheckboxTooltipText,
Checked = _automaticClearEnabled.Value
};


Expand Down

0 comments on commit 8dee200

Please sign in to comment.