aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dmenu.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/dmenu.c b/dmenu.c
index d605ab4..85e5060 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -545,6 +545,7 @@ setup(void)
545 XIM xim; 545 XIM xim;
546 Window w, dw, *dws; 546 Window w, dw, *dws;
547 XWindowAttributes wa; 547 XWindowAttributes wa;
548 XClassHint ch = {"dmenu", "dmenu"};
548#ifdef XINERAMA 549#ifdef XINERAMA
549 XineramaScreenInfo *info; 550 XineramaScreenInfo *info;
550 Window pw; 551 Window pw;
@@ -613,6 +614,7 @@ setup(void)
613 win = XCreateWindow(dpy, parentwin, x, y, mw, mh, 0, 614 win = XCreateWindow(dpy, parentwin, x, y, mw, mh, 0,
614 CopyFromParent, CopyFromParent, CopyFromParent, 615 CopyFromParent, CopyFromParent, CopyFromParent,
615 CWOverrideRedirect | CWBackPixel | CWEventMask, &swa); 616 CWOverrideRedirect | CWBackPixel | CWEventMask, &swa);
617 XSetClassHint(dpy, win, &ch);
616 618
617 /* open input methods */ 619 /* open input methods */
618 xim = XOpenIM(dpy, NULL, NULL, NULL); 620 xim = XOpenIM(dpy, NULL, NULL, NULL);