Qt-interest Archive, February 2007
QPainterPath border.
Message 1 in thread
Hey all,
I'm trying to get rid of the QPainterPath border,
but pen.setWidth(0) doesn't seem to work.
Any ideas ?
Thanks.
Ben.
--
[ signature omitted ]
Message 2 in thread
bunjeee wrote:
> I'm trying to get rid of the QPainterPath border,
> but pen.setWidth(0) doesn't seem to work.
Try this: setPen( Qt::NoPen );
--Dave
--
[ signature omitted ]
Message 3 in thread
bunjeee wrote:
> Hey all,
>
> I'm trying to get rid of the QPainterPath border,
> but pen.setWidth(0) doesn't seem to work.
setPen(QPen(Qt::NoPen));
Stefan
--
[ signature omitted ]