SVN commit 1121240 by hpereiradacosta: fixed margin for GeometryTip widget M +5 -2 oxygen.cpp --- trunk/KDE/kdebase/workspace/kstyles/oxygen/oxygen.cpp #1121239:1121240 @@ -4221,8 +4221,11 @@ widget->setAttribute(Qt::WA_NoSystemBackground); widget->setAttribute(Qt::WA_TranslucentBackground); - if( QFrame* frame = qobject_cast( widget ) ) - { frame->setFrameStyle( QFrame::NoFrame ); } + if( QLabel* label = qobject_cast( widget ) ) + { + label->setFrameStyle( QFrame::NoFrame ); + label->setMargin(5); + } #ifdef Q_WS_WIN widget->setWindowFlags(widget->windowFlags() | Qt::FramelessWindowHint);