Revive dark theme detection

The code was removed in 199d770e15 and now revived.
This commit is contained in:
Chocobo1 2022-09-17 01:12:12 +08:00
parent 5e4a94e6b6
commit 0e0b8d1027
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
2 changed files with 11 additions and 0 deletions

View file

@ -34,8 +34,10 @@
#endif
#include <QApplication>
#include <QColor>
#include <QDesktopServices>
#include <QIcon>
#include <QPalette>
#include <QPixmap>
#include <QPixmapCache>
#include <QPoint>
@ -54,6 +56,13 @@
#include "base/utils/fs.h"
#include "base/utils/version.h"
bool Utils::Gui::isDarkTheme()
{
const QPalette palette = qApp->palette();
const QColor &color = palette.color(QPalette::Active, QPalette::Base);
return (color.lightness() < 127);
}
QPixmap Utils::Gui::scaledPixmap(const QIcon &icon, const QWidget *widget, const int height)
{
Q_UNUSED(widget); // TODO: remove it