uppercase first letter

This commit is contained in:
Jaehyuk-Lee 2021-06-06 15:35:28 +09:00
parent 5f2a207474
commit d91a1c3d0b

View file

@ -83,7 +83,7 @@ namespace DutyContent.Tab
else else
_overlay.Hide(); _overlay.Hide();
if (DcConfig.Duty.OverlayClickThru) if (DcConfig.Duty.OverlayClickThru)
enableOverlayClickThru(); EnableOverlayClickThru();
// //
chkEnableSound.Checked = DcConfig.Duty.EnableSound; chkEnableSound.Checked = DcConfig.Duty.EnableSound;
@ -679,9 +679,9 @@ namespace DutyContent.Tab
DcConfig.Duty.OverlayClickThru = chkOverlayClickThru.Checked; DcConfig.Duty.OverlayClickThru = chkOverlayClickThru.Checked;
if (DcConfig.Duty.OverlayClickThru) if (DcConfig.Duty.OverlayClickThru)
enableOverlayClickThru(); EnableOverlayClickThru();
else else
disableOverlayClickThru(); DisableOverlayClickThru();
SaveConfig(); SaveConfig();
} }
@ -1328,7 +1328,7 @@ namespace DutyContent.Tab
} }
} }
void enableOverlayClickThru() void EnableOverlayClickThru()
{ {
int initialStyle = GetWindowLong(_overlay.Handle, -20); int initialStyle = GetWindowLong(_overlay.Handle, -20);
if (DcConfig.Duty.OverlayClickThru) if (DcConfig.Duty.OverlayClickThru)
@ -1341,7 +1341,7 @@ namespace DutyContent.Tab
} }
} }
void disableOverlayClickThru() void DisableOverlayClickThru()
{ {
int initialStyle = GetWindowLong(_overlay.Handle, -20); int initialStyle = GetWindowLong(_overlay.Handle, -20);
if (DcConfig.Duty.OverlayClickThru) if (DcConfig.Duty.OverlayClickThru)