Add missing images

This commit is contained in:
luxick
2017-02-22 14:38:28 +01:00
parent df8eacf4b9
commit b8717facc6
9 changed files with 7 additions and 7 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 147 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

View File

@@ -52,13 +52,13 @@ class SearchView(Gtk.Grid):
self.colorless_mana_button.connect("toggled", self.mana_toggled) self.colorless_mana_button.connect("toggled", self.mana_toggled)
self.color_chooser = Gtk.Grid(row_spacing=5, column_spacing=5) 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.mana_filter_label, 0, 0, 1, 1)
self.color_chooser.attach(self.white_mana_button, 0, 1, 1, 1) self.color_chooser.attach(self.white_mana_button, 1, 0, 1, 1)
self.color_chooser.attach(self.blue_mana_button, 1, 1, 1, 1) self.color_chooser.attach(self.blue_mana_button, 2, 0, 1, 1)
self.color_chooser.attach(self.black_mana_button, 2, 1, 1, 1) self.color_chooser.attach(self.black_mana_button, 3, 0, 1, 1)
self.color_chooser.attach(self.red_mana_button, 0, 2, 1, 1) self.color_chooser.attach(self.red_mana_button, 1, 1, 1, 1)
self.color_chooser.attach(self.green_mana_button, 1, 2, 1, 1) self.color_chooser.attach(self.green_mana_button, 2, 1, 1, 1)
self.color_chooser.attach(self.colorless_mana_button, 2, 2, 1, 1) self.color_chooser.attach(self.colorless_mana_button, 3, 1, 1, 1)
# Text renderer for the Combo Boxes # Text renderer for the Combo Boxes
renderer_text = Gtk.CellRendererText() renderer_text = Gtk.CellRendererText()