From 60fdad20d5cd2cef73630f94dae9ee8e6a72a025 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Br=C3=BCbach=2C=20Lukas?= Date: Sat, 29 Nov 2025 22:05:05 +0100 Subject: [PATCH] We do a little linting. --- .../widgets/general/display/shadow_background_label.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cockatrice/src/interface/widgets/general/display/shadow_background_label.cpp b/cockatrice/src/interface/widgets/general/display/shadow_background_label.cpp index 77aa42e7a..7db18c57d 100644 --- a/cockatrice/src/interface/widgets/general/display/shadow_background_label.cpp +++ b/cockatrice/src/interface/widgets/general/display/shadow_background_label.cpp @@ -12,7 +12,7 @@ */ ShadowBackgroundLabel::ShadowBackgroundLabel(QWidget *parent, const QString &text) : QLabel(parent) { - setAttribute(Qt::WA_TranslucentBackground); // Allows transparency. + setAttribute(Qt::WA_TranslucentBackground); // Allows transparency. setLabelText(text); setAlignment(Qt::AlignCenter); ///< Centers the text within the label. setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum); ///< Ensures minimum size constraints. @@ -20,7 +20,7 @@ ShadowBackgroundLabel::ShadowBackgroundLabel(QWidget *parent, const QString &tex void ShadowBackgroundLabel::setLabelText(const QString &text) { - setText("" + text + ""); ///< Ensures the text is rendered in white. + setText("" + text + ""); ///< Ensures the text is rendered in white. update(); }