From ebe17f3dae29fa51a6170440ef8cc20a02037e26 Mon Sep 17 00:00:00 2001 From: H.G.Muller Date: Thu, 21 Apr 2016 19:09:00 +0200 Subject: [PATCH] Make EditTags dialog non-wrapping As the data edited with this dialog (PGN tags, engine list, theme list, book moves, ICS menu definition) is always tabular, wrapping the lines is just confusing, and it is better to have an automatic hscroll in case the lines are too long to fit. --- dialogs.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dialogs.c b/dialogs.c index 7885f11..d3b333e 100644 --- a/dialogs.c +++ b/dialogs.c @@ -1226,7 +1226,7 @@ NewMove () Option tagsOptions[] = { { 0, 0, 0, NULL, NULL, NULL, NULL, Label, NULL }, -{ 200, T_VSCRL | T_FILL | T_WRAP | T_TOP, 200, NULL, (void*) &tagsText, NULL, (char **) &TagsClick, TextBox, "", &appData.tagsFont }, +{ 200, T_VSCRL | T_FILL | T_TOP, 200, NULL, (void*) &tagsText, NULL, (char **) &TagsClick, TextBox, "", &appData.tagsFont }, { 0, 0, 100, NULL, (void*) &NewMove, NULL, NULL, Button, N_("add next move") }, { 0,SAME_ROW,100,NULL, (void*) &changeTags, NULL, NULL, Button, N_("commit changes") }, { 0,SAME_ROW, 0, NULL, (void*) &NewTagsCallback, "", NULL, EndMark , "" } -- 1.7.0.4