diff options
author | marha <marha@users.sourceforge.net> | 2014-03-05 09:33:39 +0100 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2014-03-05 09:33:39 +0100 |
commit | 8badbdef38ce843dc443ddee219eda4040ef2cd5 (patch) | |
tree | e44061aeab2425b199c89ec54b5caa909228492c /xorg-server/hw/xwin/winshadgdi.c | |
parent | 45392e4a0642880b569ea5d4a350cdc395a2c7db (diff) | |
download | vcxsrv-8badbdef38ce843dc443ddee219eda4040ef2cd5.tar.gz vcxsrv-8badbdef38ce843dc443ddee219eda4040ef2cd5.tar.bz2 vcxsrv-8badbdef38ce843dc443ddee219eda4040ef2cd5.zip |
Now taskbar with notab can be specified in system.XWinrc
Diffstat (limited to 'xorg-server/hw/xwin/winshadgdi.c')
-rw-r--r-- | xorg-server/hw/xwin/winshadgdi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xorg-server/hw/xwin/winshadgdi.c b/xorg-server/hw/xwin/winshadgdi.c index 7d41369db..f04d2562b 100644 --- a/xorg-server/hw/xwin/winshadgdi.c +++ b/xorg-server/hw/xwin/winshadgdi.c @@ -32,6 +32,7 @@ #include <xwin-config.h> #endif #include "win.h" +#include "winprefs.h" /* * Local function prototypes @@ -587,7 +588,7 @@ winCloseScreenShadowGDI(ScreenPtr pScreen) ReleaseDC(pScreenPriv->hwndScreen, pScreenPriv->hdcScreen); /* Delete tray icon, if we have one */ - if (!pScreenInfo->fNoTrayIcon) + if (!pScreenInfo->fNoTrayIcon && !pref.fNoTrayIcon) winDeleteNotifyIcon(pScreenPriv); /* Free the exit confirmation dialog box, if it exists */ |