diff --git a/cockatrice/cockatrice.qrc b/cockatrice/cockatrice.qrc
index 1c7c80b6..d720afb0 100644
--- a/cockatrice/cockatrice.qrc
+++ b/cockatrice/cockatrice.qrc
@@ -18,6 +18,8 @@
resources/icon_phase_cleanup.svg
resources/icon_nextturn.svg
+ resources/hr.jpg
+
translations/cockatrice_de.qm
translations/cockatrice_en.qm
diff --git a/cockatrice/resources/hr.jpg b/cockatrice/resources/hr.jpg
new file mode 100644
index 00000000..d7250a78
Binary files /dev/null and b/cockatrice/resources/hr.jpg differ
diff --git a/cockatrice/src/decklistmodel.cpp b/cockatrice/src/decklistmodel.cpp
index 4b5ed59a..9709f469 100644
--- a/cockatrice/src/decklistmodel.cpp
+++ b/cockatrice/src/decklistmodel.cpp
@@ -397,7 +397,8 @@ void DeckListModel::printDeckList(QPrinter *printer)
cursor.insertBlock(headerBlockFormat, headerCharFormat);
for (int i = 0; i < root->size(); i++) {
- cursor.insertHtml("
");
+ cursor.insertHtml("
");
+ //cursor.insertHtml("
");
cursor.insertBlock(headerBlockFormat, headerCharFormat);
printDeckListNode(&cursor, dynamic_cast(root->at(i)));