Hi,
there are some troubles with the rendering of the css property
-webkit-border-radius ... I don't know how this happens. it seems that
anti aliasing is not on or something else, the borders are quit rounded
but very ugly .. not smooth ... could i turn it on with QWebSettings or
something else?
> you need to delete both the layouts and their contents:
>
> def unfill(self):
> def deleteItems(layout):
> if layout is not None:
> while layout.count():
> item = layout.takeAt(0)
> widget = item.widget()
>
Lee Harr wrote:
I wrote about this a couple of weeks ago, but I did not have a small
working example to show the problem I'm having. Now I do.
I have a layout created in Qt4 Designer which I fill with a series of
complex layouts at runtime. That works great. Later on, I want
to completely remov
On Sat, 28 Nov 2009 00:24:18 +0100, Kastner Mario
wrote:
> I L.O.V.E PyQt4 ... really! But at this time i am realy at the end of my
> knowledge.
>
> I have following code:
>
> SNIPPET START
>
> from PyQt4.QtCore import *
> from PyQt4.QtGui import *
>