From e801254b2e7dc9989ebc92a5dda9e7b0af44156b Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Sun, 8 Nov 2020 03:22:38 +0100 Subject: [PATCH] Log used style --- src/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.cpp b/src/main.cpp index a727cace..67e2a708 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -206,6 +206,7 @@ int main(int argc, char* argv[]) { if (style != "default") { QApplication::setStyle(style); } + if (QApplication::style()) qLog(Debug) << "Style:" << QApplication::style()->objectName(); } // Set the permissions on the config file on Unix - it can contain passwords for internet services so it's important that other users can't read it.