From 6f453717adc7daa21bf82a4d3d8f47c0bac69d5c Mon Sep 17 00:00:00 2001 From: ubuntu1804 Date: Sat, 8 Nov 2025 12:26:45 +0800 Subject: [PATCH] Increase lock info rect height Prevent clipping of lock information by adding 10px of vertical space --- src/customwidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/customwidget.cpp b/src/customwidget.cpp index 8b87372..7ffb2a7 100644 --- a/src/customwidget.cpp +++ b/src/customwidget.cpp @@ -311,7 +311,7 @@ void CustomWidget::drawStatusInfo(QPainter &painter) void CustomWidget::drawLockInfo(QPainter &painter) { QFont infoFont = painter.font(); - QRect lockInfoRect(10, 180, 350, 110); + QRect lockInfoRect(10, 180, 350, 120); painter.fillRect(lockInfoRect, QColor(60, 0, 60, 180)); painter.setPen(QColor(255, 200, 255));