[skip CI] [Gui] NaviCube.cpp revert a change

from commit f70329390c since the intended fix is not universal for all cube sizes, therefore leave the old pen width as compromise that obviously worked well

(as strange as it is, restarting FC brings me everytime a different border width)
This commit is contained in:
Uwe
2022-05-12 06:43:29 +02:00
parent 84feca0521
commit f60e20ef98

View File

@@ -368,7 +368,7 @@ GLuint NaviCubeImplementation::createCubeFaceTex(QtGLWidget* gl, float gap, cons
QImage image(texSize, texSize, QImage::Format_ARGB32);
image.fill(qRgba(255, 255, 255, 0));
QPainter paint;
QPen pen(Qt::black, 6 * m_BorderWidth);
QPen pen(Qt::black, 10);
paint.begin(&image);
paint.setRenderHints(QPainter::Antialiasing | QPainter::TextAntialiasing | QPainter::SmoothPixmapTransform);