summaryrefslogtreecommitdiffstats
path: root/src/yuzu/util/clickable_label.cpp
blob: 5bde838ca4feaf5288d104b51b04923fd142eef1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2017 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "yuzu/util/clickable_label.h"

ClickableLabel::ClickableLabel(QWidget* parent, [[maybe_unused]] Qt::WindowFlags f)
    : QLabel(parent) {}

void ClickableLabel::mouseReleaseEvent([[maybe_unused]] QMouseEvent* event) {
    emit clicked();
}