tags:

views:

57

answers:

0

I'm trying to get my application hidden to systray and the systray thing works fine, except my app won't disspaear from the taskbar. The icon seem to dissapear, but another icon pops up and when I click to show that window I get a windowframe but the contents aren't drawn.

def hideEvent(self, event):
    self.trayIcon.show()
    self.hide()

How does this not hide my window from the taskbar? It seems like the window contents are hidden but not the window itself. I'm running Windows 7.

Here's a screen showing how it looks after I've minimized it and then click on the icon that seem to pop up:

Screenshot