mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 13:27:45 -07:00
10 lines
263 B
C++
10 lines
263 B
C++
// Copyright 2023 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
class QWidget;
|
|
|
|
// Changes the window decorations (title bar) to dark if the user uses dark mode on Windows.
|
|
void SetQWidgetWindowDecorations(QWidget* widget);
|