Skip to content

Commit

Permalink
removed logging of the current item
Browse files Browse the repository at this point in the history
  • Loading branch information
tolik518 committed Aug 10, 2024
1 parent a824840 commit de956d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
6 changes: 3 additions & 3 deletions SoG_SGreader/Forms/FrmMain.Designer.cs

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

6 changes: 0 additions & 6 deletions SoG_SGreader/Forms/FrmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -735,12 +735,6 @@ private void GetDataFromFields()

private void lstInventory_SelectedIndexChanged(object sender, EventArgs e)
{
// extract listviewitem index and text from sender
if (lstInventory.FocusedItem != null)
{
txtConsole.AppendText("\r\n\r\nSelected item " + lstInventory.FocusedItem.Index + ": " + lstInventory.FocusedItem.Text);
}

if (lstInventory.FocusedItem == null || lstInventory.FocusedItem.Index == -1)
{
return;
Expand Down

0 comments on commit de956d4

Please sign in to comment.