Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 112024
Collapse All | Expand All

(-)file_not_specified_in_diff (-4 / +4 lines)
Line  Link Here
0
-- dialog-1.0-20050306/checklist.c
0
++ dialog-1.0-20050306/checklist.c
Lines 246-252 Link Here
246
	if (fkey && (key >= (M_EVENT + KEY_MAX))) {
246
	if (fkey && (key >= (M_EVENT + KEY_MAX))) {
247
	    getyx(dialog, cur_y, cur_x);
247
	    getyx(dialog, cur_y, cur_x);
248
	    i = (key - (M_EVENT + KEY_MAX));
248
	    i = (key - (M_EVENT + KEY_MAX));
249
	    if (scrollamt + i < max_choice) {
249
	    if (i < max_choice) {
250
		/* De-highlight current item */
250
		/* De-highlight current item */
251
		print_item(list,
251
		print_item(list,
252
			   ItemData(scrollamt + choice),
252
			   ItemData(scrollamt + choice),
253
-- dialog-1.0-20050306/menubox.c
253
++ dialog-1.0-20050306/menubox.c
Lines 410-416 Link Here
410
	    if (key >= (M_EVENT + KEY_MAX)) {
410
	    if (key >= (M_EVENT + KEY_MAX)) {
411
		key -= (M_EVENT + KEY_MAX);
411
		key -= (M_EVENT + KEY_MAX);
412
		i = RowToItem(key);
412
		i = RowToItem(key);
413
		if (scrollamt + i < max_choice) {
413
		if (i < max_choice) {
414
		    found = TRUE;
414
		    found = TRUE;
415
		} else {
415
		} else {
416
		    beep();
416
		    beep();

Return to bug 112024