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();
}