Ticket #2362: width of WCheck and WRadio widgets are initialized incorrectly.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
Этот коммит содержится в:
родитель
3013a364b0
Коммит
64b126fabf
@ -520,7 +520,8 @@ radio_new (int y, int x, int count, const char **texts)
|
|||||||
max = m;
|
max = m;
|
||||||
}
|
}
|
||||||
|
|
||||||
init_widget (&result->widget, y, x, count, max, radio_callback, radio_event);
|
init_widget (&result->widget, y, x, count, 4 + max, radio_callback, radio_event);
|
||||||
|
/* 4 is width of "(*) " */
|
||||||
result->state = 1;
|
result->state = 1;
|
||||||
result->pos = 0;
|
result->pos = 0;
|
||||||
result->sel = 0;
|
result->sel = 0;
|
||||||
@ -615,7 +616,8 @@ check_new (int y, int x, int state, const char *text)
|
|||||||
|
|
||||||
c->text = parse_hotkey (text);
|
c->text = parse_hotkey (text);
|
||||||
|
|
||||||
init_widget (&c->widget, y, x, 1, hotkey_width (c->text), check_callback, check_event);
|
init_widget (&c->widget, y, x, 1, 4 + hotkey_width (c->text), check_callback, check_event);
|
||||||
|
/* 4 is width of "[X] " */
|
||||||
c->state = state ? C_BOOL : 0;
|
c->state = state ? C_BOOL : 0;
|
||||||
widget_want_hotkey (c->widget, 1);
|
widget_want_hotkey (c->widget, 1);
|
||||||
|
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user