From 69fee7c59d4ba0ae16c366b43557bae843858abf Mon Sep 17 00:00:00 2001 From: Hpero4 Date: Mon, 20 May 2024 23:43:31 +0800 Subject: [PATCH] =?UTF-8?q?1.=20=E7=BB=99=E5=A4=A7=E4=B9=B1=E6=96=97buff?= =?UTF-8?q?=E6=8E=A7=E4=BB=B6=E6=B7=BB=E5=8A=A0=E4=BA=86=E5=88=86=E9=9A=94?= =?UTF-8?q?=E7=BA=BF=202.=20=E5=9C=A8=E6=98=BE=E7=A4=BA=E5=A4=A7=E4=B9=B1?= =?UTF-8?q?=E6=96=97buff=E6=8E=A7=E4=BB=B6=E6=97=B6,=20=E5=A6=82=E6=9E=9C?= =?UTF-8?q?=E8=B6=85=E5=87=BA=E4=BA=86=E5=B1=8F=E5=B9=95=E4=B8=8A=E8=BE=B9?= =?UTF-8?q?=E7=BC=98,=20=E7=A7=BB=E8=87=B3=E5=A4=B4=E5=83=8F=E5=BA=95?= =?UTF-8?q?=E4=B8=8B=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/components/profile_level_icon_widget.py | 3 +++ app/resource/qss/dark/aram_flyout.qss | 5 +++++ app/resource/qss/light/aram_flyout.qss | 5 +++++ 3 files changed, 13 insertions(+) diff --git a/app/components/profile_level_icon_widget.py b/app/components/profile_level_icon_widget.py index 6d8995a3..cafe17d6 100644 --- a/app/components/profile_level_icon_widget.py +++ b/app/components/profile_level_icon_widget.py @@ -225,6 +225,9 @@ def calcPoints(self): if x < 5: x = 5 + if y < 5: + y = pos.y() + self.target.height() + 5 + return QPoint(x, y) def __initWidgets(self): diff --git a/app/resource/qss/dark/aram_flyout.qss b/app/resource/qss/dark/aram_flyout.qss index b06bb96e..78c9a3fd 100644 --- a/app/resource/qss/dark/aram_flyout.qss +++ b/app/resource/qss/dark/aram_flyout.qss @@ -28,4 +28,9 @@ #powerByLabel { font: 12px 'Microsoft YaHei', 'Segoe UI'; color: gray; +} + +#descriptionLabel { + border-top: 1px solid rgba(0, 0, 0, 80); + margin-top: 10px; } \ No newline at end of file diff --git a/app/resource/qss/light/aram_flyout.qss b/app/resource/qss/light/aram_flyout.qss index 4618f5d2..4425359f 100644 --- a/app/resource/qss/light/aram_flyout.qss +++ b/app/resource/qss/light/aram_flyout.qss @@ -28,4 +28,9 @@ #powerByLabel { font: 12px 'Microsoft YaHei', 'Segoe UI'; color: gray; +} + +#descriptionLabel { + border-top: 1px solid rgba(0, 0, 0, 80); + padding-top: 10px; } \ No newline at end of file