From: Dana Jansens Date: Sat, 20 Jul 2002 17:04:07 +0000 (+0000) Subject: now it opens on all possible screens X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=aa34774d4c8758c33e66fd78b0135303456c5e51;p=chaz%2Fopenbox now it opens on all possible screens --- diff --git a/util/epist/epist.cc b/util/epist/epist.cc index 1a4b4c24..51c1e820 100644 --- a/util/epist/epist.cc +++ b/util/epist/epist.cc @@ -68,9 +68,11 @@ epist::epist(char **argv, char *dpy_name, char *rc_file) _xatom = new XAtom(getXDisplay()); - screen *s = new screen(this, DefaultScreen(getXDisplay())); - if (s->managed()) - _screens.push_back(s); + for (unsigned int i = 0; i < getNumberOfScreens(); ++i) { + screen *s = new screen(this, i); + if (s->managed()) + _screens.push_back(s); + } if (_screens.empty()) { cout << "No compatible window manager found on any screens. Aborting.\n"; ::exit(1);