ソースを参照

using xidx

master
Anselm R Garbe 16年前
コミット
fcf26a38f1
1個のファイルの変更3行の追加3行の削除
  1. +3
    -3
      dmenu.c

+ 3
- 3
dmenu.c ファイルの表示

@@ -634,9 +634,9 @@ setup(Bool topbar) {
#if XINERAMA
if(XineramaIsActive(dpy)) {
info = XineramaQueryScreens(dpy, &i);
x = info[0].x_org;
y = topbar ? info[0].y_org : info[0].y_org + info[0].height - mh;
mw = info[0].width;
x = info[xidx].x_org;
y = topbar ? info[xidx].y_org : info[xidx].y_org + info[xidx].height - mh;
mw = info[xidx].width;
XFree(info);
}
else


読み込み中…
キャンセル
保存