1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 09:08:10 +00:00

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.
This commit is contained in:
AnicJov 2020-12-04 13:04:53 +01:00 committed by Andreas Kling
parent 8f392683c7
commit 694f68ab86
2 changed files with 2 additions and 2 deletions

View file

@ -37,7 +37,7 @@ ChessWidget::ChessWidget(const StringView& set)
}
ChessWidget::ChessWidget()
: ChessWidget("test")
: ChessWidget("stelar7")
{
}

View file

@ -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));