Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 94403 | Differences between
and this patch

Collapse All | Expand All

(-)flvw/1.0/src/Flv_List.cxx (-3 / +3 lines)
Lines 390-396 Link Here
390
	if (label())
390
	if (label())
391
	{
391
	{
392
		rh = row_height(-3);
392
		rh = row_height(-3);
393
		if (Y<=y && y<=Y+rh)
393
		if (Y<=y && y<=Y+rh && x>=X && x<=X+W)
394
			return -3;
394
			return -3;
395
		Y+=rh;
395
		Y+=rh;
396
		H-=rh;
396
		H-=rh;
Lines 398-404 Link Here
398
	if (row_header())
398
	if (row_header())
399
	{
399
	{
400
		rh = row_height(-1);
400
		rh = row_height(-1);
401
		if (Y<=y && y<=Y+rh)
401
		if (Y<=y && y<=Y+rh && x>=X && x<=X+W)
402
			return -1;
402
			return -1;
403
		Y+=rh;
403
		Y+=rh;
404
		H-=rh;
404
		H-=rh;
Lines 406-412 Link Here
406
	if (row_footer())
406
	if (row_footer())
407
	{
407
	{
408
		rh = row_height(-2);
408
		rh = row_height(-2);
409
		if (Y+H>=y && y>Y+H-rh)
409
		if (Y+H>=y && y>Y+H-rh && x>=X && x<=X+W)
410
			return -2;
410
			return -2;
411
		H -= rh;
411
		H -= rh;
412
	}
412
	}

Return to bug 94403