From 3f6399f13da0ac46fe8ed800e1c644f539be1649 Mon Sep 17 00:00:00 2001 From: Ilya Fedin Date: Tue, 20 Oct 2020 23:01:27 +0400 Subject: [PATCH] Log getting GTK settings --- Telegram/SourceFiles/platform/linux/linux_libs.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Telegram/SourceFiles/platform/linux/linux_libs.h b/Telegram/SourceFiles/platform/linux/linux_libs.h index 822841d57..a1f383534 100644 --- a/Telegram/SourceFiles/platform/linux/linux_libs.h +++ b/Telegram/SourceFiles/platform/linux/linux_libs.h @@ -277,6 +277,7 @@ inline QString GtkSetting(const gchar *propertyName) { gchararray value = GtkSetting(propertyName); QString str = QString::fromUtf8(value); g_free(value); + DEBUG_LOG(("Getting GTK setting, %1: '%2'").arg(propertyName).arg(str)); return str; } #endif // !TDESKTOP_DISABLE_GTK_INTEGRATION