Skip to content

Commit

Permalink
Changed keycapture logic
Browse files Browse the repository at this point in the history
  • Loading branch information
tlaanemaa committed Mar 12, 2017
1 parent a88f02e commit d1ad464
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified Clicky/bin/Release/Clicky.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion Clicky/mainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ private void keyWorker_RunWorkerCompleted(object sender, RunWorkerCompletedEvent

private void keyChecker_Tick(object sender, EventArgs e)
{
if (commandBox.Focused) return;
if (this.ContainsFocus) return;
if (toggleKeyWait == 0)
{
short keyState = GetAsyncKeyState(Properties.Settings.Default.toggleKey);
Expand Down

0 comments on commit d1ad464

Please sign in to comment.