remove combined.txt and use the one in trunk

don't populate LHS with 1-patch textures
This commit is contained in:
Jon Dowland 2008-01-29 23:19:44 +00:00
parent 8e3f11a871
commit 87dc4f5e7a
2 changed files with 3 additions and 1830 deletions

File diff suppressed because it is too large Load diff

View file

@ -85,13 +85,14 @@ class HellowWorldGTK:
self.image1 = self.wTree.get_widget("orig_texture")
# read in the IWAD texture1 lump and populate our LHS list
self.parse_texture_file("combined.txt")
self.parse_texture_file("../../textures/combined.txt")
lhs = self.wTree.get_widget("texture_list")
treestore = gtk.TreeStore(str)
tmp_texnames = self.textures.keys()
tmp_texnames.sort()
for name in tmp_texnames:
treestore.append(None, [ name ])
if len(self.textures[name].patches) > 1:
treestore.append(None, [ name ])
column = gtk.TreeViewColumn('Texture name ')
lhs.set_model(treestore)
lhs.append_column(column)