mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-17 15:59:43 +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:
parent
8f392683c7
commit
694f68ab86
Notes:
sideshowbarker
2024-07-19 17:32:05 +09:00
Author: https://github.com/AnicJov
Commit: 694f68ab86
Pull-request: https://github.com/SerenityOS/serenity/pull/4321
Reviewed-by: https://github.com/bcoles
Reviewed-by: https://github.com/emanuele6
Reviewed-by: https://github.com/petelliott
2 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@ ChessWidget::ChessWidget(const StringView& set)
|
|||
}
|
||||
|
||||
ChessWidget::ChessWidget()
|
||||
: ChessWidget("test")
|
||||
: ChessWidget("stelar7")
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -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));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue