diff --git a/src/ChangeLog b/src/ChangeLog index d4cd7c0a2..2f6ea02ca 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2003-02-19 Andrew V. Samoilov + + * option.c (init_configure): Use OTHER_OPTIONS consistently. + By Mike Smithson . + 2003-02-18 Pavel Roskin * util.c (list_append_unique): Free removed links. diff --git a/src/option.c b/src/option.c index 2b590e247..935a87fab 100644 --- a/src/option.c +++ b/src/option.c @@ -229,7 +229,8 @@ init_configure (void) /* Add checkboxes for "panel options" */ for (i = 0; i < PANEL_OPTIONS; i++) { check_options[i + OTHER_OPTIONS].widget = - check_new (PY + (6 - i), PX + 2, XTRACT (i + OTHER_OPTIONS)); + check_new (PY + (PANEL_OPTIONS - i), PX + 2, + XTRACT (i + OTHER_OPTIONS)); add_widget (conf_dlg, check_options[i + OTHER_OPTIONS].widget); } }