From de956d4518a29561257a16c4fca0fe4ec92ac269 Mon Sep 17 00:00:00 2001 From: tolik518 Date: Sat, 10 Aug 2024 18:56:21 +0200 Subject: [PATCH] removed logging of the current item --- SoG_SGreader/Forms/FrmMain.Designer.cs | 6 +++--- SoG_SGreader/Forms/FrmMain.cs | 6 ------ 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/SoG_SGreader/Forms/FrmMain.Designer.cs b/SoG_SGreader/Forms/FrmMain.Designer.cs index bb0f776..0d8568f 100644 --- a/SoG_SGreader/Forms/FrmMain.Designer.cs +++ b/SoG_SGreader/Forms/FrmMain.Designer.cs @@ -1532,17 +1532,17 @@ private void InitializeComponent() // Item // this.Item.Text = "Item"; - this.Item.Width = 356; + this.Item.Width = 345; // // Count // this.Count.Text = "Count"; - this.Count.Width = 65; + this.Count.Width = 105; // // Position // this.Position.Text = "Position"; - this.Position.Width = 70; + this.Position.Width = 65; // // numGold // diff --git a/SoG_SGreader/Forms/FrmMain.cs b/SoG_SGreader/Forms/FrmMain.cs index c32c8f5..d8d4f22 100644 --- a/SoG_SGreader/Forms/FrmMain.cs +++ b/SoG_SGreader/Forms/FrmMain.cs @@ -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;