OSDPretty: Change pensize back to 2

Removes workaround from commit 91eee99bab
This commit is contained in:
Jonas Kvinge
2023-01-01 22:51:46 +01:00
parent 1a2ab19ab4
commit 8b2e8d3804

View File

@@ -335,7 +335,7 @@ void OSDPretty::paintEvent(QPaintEvent*) {
// Box border
p.setBrush(QBrush());
p.setPen(QPen(background_color_.darker(150), 3));
p.setPen(QPen(background_color_.darker(150), 2));
p.drawRoundedRect(box, kBorderRadius, kBorderRadius);
}