gdi: Show hatch brush FIXME only once.
This commit is contained in:
parent
990e20c992
commit
ee0e13923f
|
@ -154,8 +154,11 @@ HPEN WINAPI ExtCreatePen( DWORD style, DWORD width,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (brush->lbHatch && ((brush->lbStyle == BS_SOLID) || (brush->lbStyle == BS_HOLLOW)))
|
if (brush->lbHatch && ((brush->lbStyle == BS_SOLID) || (brush->lbStyle == BS_HOLLOW)))
|
||||||
FIXME("Hatches not implemented\n");
|
{
|
||||||
|
static int fixme_hatches_shown;
|
||||||
|
if (!fixme_hatches_shown++) FIXME("Hatches not implemented\n");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue