diff --git a/mtg-collector/resources/images/dummy.jpg b/mtg-collector/resources/images/dummy.jpg new file mode 100644 index 0000000..db96d70 Binary files /dev/null and b/mtg-collector/resources/images/dummy.jpg differ diff --git a/mtg-collector/resources/mana_icons/B_alt.png b/mtg-collector/resources/mana_icons/B_alt.png new file mode 100644 index 0000000..245051e Binary files /dev/null and b/mtg-collector/resources/mana_icons/B_alt.png differ diff --git a/mtg-collector/resources/mana_icons/C.png b/mtg-collector/resources/mana_icons/C.png new file mode 100644 index 0000000..2694fd8 Binary files /dev/null and b/mtg-collector/resources/mana_icons/C.png differ diff --git a/mtg-collector/resources/mana_icons/C_alt.png b/mtg-collector/resources/mana_icons/C_alt.png new file mode 100644 index 0000000..b60f4a8 Binary files /dev/null and b/mtg-collector/resources/mana_icons/C_alt.png differ diff --git a/mtg-collector/resources/mana_icons/G_alt.png b/mtg-collector/resources/mana_icons/G_alt.png new file mode 100644 index 0000000..b41ccd9 Binary files /dev/null and b/mtg-collector/resources/mana_icons/G_alt.png differ diff --git a/mtg-collector/resources/mana_icons/R_alt.png b/mtg-collector/resources/mana_icons/R_alt.png new file mode 100644 index 0000000..5263bd1 Binary files /dev/null and b/mtg-collector/resources/mana_icons/R_alt.png differ diff --git a/mtg-collector/resources/mana_icons/U_alt.png b/mtg-collector/resources/mana_icons/U_alt.png new file mode 100644 index 0000000..a0ccba1 Binary files /dev/null and b/mtg-collector/resources/mana_icons/U_alt.png differ diff --git a/mtg-collector/resources/mana_icons/W_alt.png b/mtg-collector/resources/mana_icons/W_alt.png new file mode 100644 index 0000000..4ff6c41 Binary files /dev/null and b/mtg-collector/resources/mana_icons/W_alt.png differ diff --git a/mtg-collector/search.py b/mtg-collector/search.py index e79f277..4d77a9b 100644 --- a/mtg-collector/search.py +++ b/mtg-collector/search.py @@ -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()