mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-02 07:25:45 -04:00
remove combined.txt and use the one in trunk
don't populate LHS with 1-patch textures
This commit is contained in:
parent
8e3f11a871
commit
87dc4f5e7a
2 changed files with 3 additions and 1830 deletions
File diff suppressed because it is too large
Load diff
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue