Cleanup of table tiles to remove duplicates and consolidate name references.
BIN
data/tiles/Abstract_Metallic.png
Normal file
After Width: | Height: | Size: 99 KiB |
Before Width: | Height: | Size: 9.3 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 729 B |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 1,009 B After Width: | Height: | Size: 994 B |
Before Width: | Height: | Size: 6 KiB |
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 6 KiB |
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 5.8 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 6 KiB |
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 6 KiB |
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 2 KiB |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 971 B After Width: | Height: | Size: 959 B |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 4 KiB |
Before Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 7.3 KiB |
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 360 B After Width: | Height: | Size: 351 B |
Before Width: | Height: | Size: 43 KiB |
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
@ -636,7 +636,7 @@ class Application:
|
|||
self.opt.colors['table'] = tile.color
|
||||
self.opt.tabletile_name = None
|
||||
else:
|
||||
self.opt.tabletile_name = tile.basename
|
||||
self.opt.tabletile_name = tile.name
|
||||
self.tabletile_index = i
|
||||
self.tabletile_manager.setSelected(i)
|
||||
return True
|
||||
|
|
|
@ -364,7 +364,12 @@ Cardsets package is up to date.
|
|||
app.initTiles()
|
||||
if app.opt.tabletile_name: # and top.winfo_screendepth() > 8:
|
||||
for tile in manager.getAll():
|
||||
if app.opt.tabletile_name == tile.basename:
|
||||
# The basename is checked in addition to the tile name
|
||||
# this is to support differences in the table tile format
|
||||
# from older PySol versions.
|
||||
if (app.opt.tabletile_name == tile.name or
|
||||
(os.path.splitext(app.opt.tabletile_name)[0] ==
|
||||
os.path.splitext(tile.basename)[0])):
|
||||
app.tabletile_index = tile.index
|
||||
break
|
||||
|
||||
|
|
|
@ -568,7 +568,7 @@ class Options:
|
|||
top.winfo_screendepth())
|
||||
# bg
|
||||
if sd > 8:
|
||||
self.tabletile_name = "Felt_Green.gif" # basename
|
||||
self.tabletile_name = "Felt Green" # name
|
||||
else:
|
||||
self.tabletile_name = None
|
||||
# cardsets
|
||||
|
|