From 5112dfe162f9206225de1e8dea04c2e2f9019457 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= Date: Wed, 26 Feb 2025 22:59:58 +0000 Subject: [PATCH] Set window icon This is commonly used by desktop environments on Xorg. --- krfb/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/krfb/main.cpp b/krfb/main.cpp index c0909a20..2c57012c 100644 --- a/krfb/main.cpp +++ b/krfb/main.cpp @@ -110,6 +110,8 @@ int main(int argc, char *argv[]) "protocol design")); KAboutData::setApplicationData(aboutData); + QApplication::setWindowIcon(QIcon::fromTheme(QStringLiteral("krfb"))); + KCrash::initialize(); QCommandLineParser parser;