Skip to content

Commit

Permalink
adjusted offsettext size
Browse files Browse the repository at this point in the history
  • Loading branch information
fischgeek committed Aug 28, 2021
1 parent e6e373e commit 6157b78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 2 additions & 2 deletions WheelSelect/Main.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions WheelSelect/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ private int GetPreviousIndex()
return selectedIndex;
}
var returnVal = selectedIndex - 1;
Debug.WriteLine("prev: " + returnVal);
return returnVal;
}

Expand All @@ -136,7 +135,6 @@ private int GetNextIndex()
return selectedIndex;
}
var returnVal = selectedIndex + 1;
Debug.WriteLine("next: " + returnVal);
return returnVal;
}

Expand Down Expand Up @@ -230,7 +228,6 @@ private void TrySetColors()

private void TryFindMatch(string matchThis)
{
Debug.WriteLine(matchThis);
filteredList.Clear();
filteredList.AddRange(theList.Where(x => x.ToLower().Contains(matchThis.ToLower())).ToList());
ScrollToIndex(0);
Expand Down Expand Up @@ -271,7 +268,6 @@ private void txtInput_TextChanged(object sender, EventArgs e)

private void txtInput_PreviewKeyDown(object sender, PreviewKeyDownEventArgs e)
{
Debug.WriteLine(e.KeyCode);
if (e.KeyCode == Keys.Escape) {
if (settings.ClearOutputFileOnEscape) {
WriteToSaveFile("");
Expand Down

0 comments on commit 6157b78

Please sign in to comment.