diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-07-14 22:57:54 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-07-14 22:57:54 +0900 |
commit | 609b1bf2072b4c857c8884b11ba869b37ec18a74 (patch) | |
tree | 12e238d05d5aadc15897dc5f7ca09c250577d382 | |
parent | f3088bc3de7db3d3bf5234cb8327b2bfa1e0a025 (diff) | |
download | amarok-609b1bf2072b4c857c8884b11ba869b37ec18a74.tar.gz amarok-609b1bf2072b4c857c8884b11ba869b37ec18a74.zip |
Fixed systray popup menu damage caused by commit f3088bc.
-rw-r--r-- | amarok/src/systray.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/amarok/src/systray.cpp b/amarok/src/systray.cpp index 4b2f44b9..9a4e0027 100644 --- a/amarok/src/systray.cpp +++ b/amarok/src/systray.cpp @@ -126,9 +126,10 @@ void Amarok::TrayIcon::resizeEvent ( TQResizeEvent * ) resizeTrayIcon(); } -void Amarok::TrayIcon::showEvent ( TQShowEvent * ) +void Amarok::TrayIcon::showEvent ( TQShowEvent *se ) { resizeTrayIcon(); + KSystemTray::showEvent(se); } void |