Module: wine Branch: master Commit: 66bbfada5f8552a93e8754cb3c53b67ed114506b URL: https://source.winehq.org/git/wine.git/?a=commit;h=66bbfada5f8552a93e8754cb3...
Author: Alexandre Julliard julliard@winehq.org Date: Wed Oct 10 20:43:42 2018 +0200
wineconsole: Set a proper default for the font weight.
Signed-off-by: Alexandre Julliard julliard@winehq.org
---
programs/wineconsole/registry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/programs/wineconsole/registry.c b/programs/wineconsole/registry.c index 92c53a7..9e7a7b6 100644 --- a/programs/wineconsole/registry.c +++ b/programs/wineconsole/registry.c @@ -219,7 +219,7 @@ void WINECON_RegLoad(const WCHAR* appname, struct config_data* cfg) memset(cfg->face_name, 0, sizeof(cfg->face_name)); cfg->cell_height = 12; cfg->cell_width = 8; - cfg->font_weight = 0; + cfg->font_weight = FW_NORMAL; cfg->history_size = 50; cfg->history_nodup = 0; cfg->insert_mode = 1;