From 694f68ab8694fb50cd177ae29e932ece50d9dbce Mon Sep 17 00:00:00 2001 From: AnicJov Date: Fri, 4 Dec 2020 13:04:53 +0100 Subject: [PATCH] Chess: Change default piece set As much as I like the "test" piece set, I think "stelar7" is a much better first impression for anyone opening the Chess game, so I consider it a much more sensible default. --- Games/Chess/ChessWidget.cpp | 2 +- Games/Chess/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Games/Chess/ChessWidget.cpp b/Games/Chess/ChessWidget.cpp index febfdd8062..1c965bcf2c 100644 --- a/Games/Chess/ChessWidget.cpp +++ b/Games/Chess/ChessWidget.cpp @@ -37,7 +37,7 @@ ChessWidget::ChessWidget(const StringView& set) } ChessWidget::ChessWidget() - : ChessWidget("test") + : ChessWidget("stelar7") { } diff --git a/Games/Chess/main.cpp b/Games/Chess/main.cpp index f660e16df5..198ec54289 100644 --- a/Games/Chess/main.cpp +++ b/Games/Chess/main.cpp @@ -78,7 +78,7 @@ int main(int argc, char** argv) window->set_icon(app_icon.bitmap_for_size(16)); - widget.set_piece_set(config->read_entry("Style", "PieceSet", "test")); + widget.set_piece_set(config->read_entry("Style", "PieceSet", "stelar7")); widget.set_board_theme(config->read_entry("Style", "BoardTheme", "Beige")); widget.set_coordinates(config->read_bool_entry("Style", "Coordinates", true));