From 099b34a658179c4187c0be9f0364b1c2b129778b Mon Sep 17 00:00:00 2001 From: cncfanatics Date: Sun, 15 Aug 2010 23:22:34 +0200 Subject: [PATCH] Don't put anything in the item browser column --- gui/marketBrowser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/marketBrowser.py b/gui/marketBrowser.py index 9d118a6f3..238056ffc 100644 --- a/gui/marketBrowser.py +++ b/gui/marketBrowser.py @@ -39,9 +39,9 @@ class MarketBrowser(wx.Panel): self.marketView.SetWindowStyleFlag(treeStyle) listStyle = self.itemView.GetWindowStyleFlag() - listStyle |= wx.LC_REPORT | wx.LC_NO_HEADER | wx.LC_SINGLE_SEL | wx.LC_ICON + listStyle |= wx.LC_NO_HEADER | wx.LC_SINGLE_SEL | wx.LC_ICON self.itemView.SetWindowStyleFlag(listStyle) - self.itemView.InsertColumn(0, "Name") + self.itemView.InsertColumn(0, "") self.splitter.SplitHorizontally(self.marketView, self.itemView) self.splitter.SetMinimumPaneSize(10)