From ff5cd74706c513ec254fd7905b2ddfb6057199d4 Mon Sep 17 00:00:00 2001 From: Nova Date: Thu, 25 Sep 2025 09:53:51 +0330 Subject: [PATCH] try including the noto font on windows too --- src/main.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 8dfcec1..9dc5bb6 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -18,6 +18,7 @@ #ifdef Q_OS_WIN #include "include/sys/windows/MiniDump.h" #include "include/sys/windows/eventHandler.h" +#include #endif #ifdef Q_OS_LINUX #include "include/sys/linux/desktopinfo.h" @@ -68,8 +69,8 @@ int main(int argc, char* argv[]) { QApplication::setQuitOnLastWindowClosed(false); QApplication a(argc, argv); -#ifdef Q_OS_LINUX - // Load the emoji font only on Linux +#ifndef Q_OS_MACOS + // Load the emoji fonts QFontDatabase::addApplicationFont(":/font/notoEmoji"); #endif