mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2025-01-05 23:11:20 -08:00
13 lines
379 B
C++
13 lines
379 B
C++
|
// 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();
|
||
|
}
|