From 2106dc5144bf473639831d222b8fe45e47edd7d7 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 15 Oct 2006 18:05:04 +0000 Subject: [PATCH] - Fixed tray icon with Qt 4.2 --- src/trayicon/trayicon_x11.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/trayicon/trayicon_x11.cpp b/src/trayicon/trayicon_x11.cpp index 897996ad4..97d50f8d9 100644 --- a/src/trayicon/trayicon_x11.cpp +++ b/src/trayicon/trayicon_x11.cpp @@ -134,7 +134,7 @@ TrayIcon::TrayIconPrivate::TrayIconPrivate(TrayIcon *object, int _size) // This resize will not work as expected, // we will get resized inside the tray later on. -// resize(size, size); + resize(size, size); setMinimumSize(size, size); setMaximumSize(size, size); }