Add missing images
BIN
mtg-collector/resources/images/dummy.jpg
Normal file
|
After Width: | Height: | Size: 147 KiB |
BIN
mtg-collector/resources/mana_icons/B_alt.png
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
BIN
mtg-collector/resources/mana_icons/C.png
Normal file
|
After Width: | Height: | Size: 4.8 KiB |
BIN
mtg-collector/resources/mana_icons/C_alt.png
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
BIN
mtg-collector/resources/mana_icons/G_alt.png
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
BIN
mtg-collector/resources/mana_icons/R_alt.png
Normal file
|
After Width: | Height: | Size: 5.8 KiB |
BIN
mtg-collector/resources/mana_icons/U_alt.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
mtg-collector/resources/mana_icons/W_alt.png
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
@@ -52,13 +52,13 @@ class SearchView(Gtk.Grid):
|
||||
self.colorless_mana_button.connect("toggled", self.mana_toggled)
|
||||
|
||||
self.color_chooser = Gtk.Grid(row_spacing=5, column_spacing=5)
|
||||
self.color_chooser.attach(self.mana_filter_label, 0, 0, 5, 1)
|
||||
self.color_chooser.attach(self.white_mana_button, 0, 1, 1, 1)
|
||||
self.color_chooser.attach(self.blue_mana_button, 1, 1, 1, 1)
|
||||
self.color_chooser.attach(self.black_mana_button, 2, 1, 1, 1)
|
||||
self.color_chooser.attach(self.red_mana_button, 0, 2, 1, 1)
|
||||
self.color_chooser.attach(self.green_mana_button, 1, 2, 1, 1)
|
||||
self.color_chooser.attach(self.colorless_mana_button, 2, 2, 1, 1)
|
||||
self.color_chooser.attach(self.mana_filter_label, 0, 0, 1, 1)
|
||||
self.color_chooser.attach(self.white_mana_button, 1, 0, 1, 1)
|
||||
self.color_chooser.attach(self.blue_mana_button, 2, 0, 1, 1)
|
||||
self.color_chooser.attach(self.black_mana_button, 3, 0, 1, 1)
|
||||
self.color_chooser.attach(self.red_mana_button, 1, 1, 1, 1)
|
||||
self.color_chooser.attach(self.green_mana_button, 2, 1, 1, 1)
|
||||
self.color_chooser.attach(self.colorless_mana_button, 3, 1, 1, 1)
|
||||
|
||||
# Text renderer for the Combo Boxes
|
||||
renderer_text = Gtk.CellRendererText()
|
||||
|
||||