aboutsummaryrefslogtreecommitdiffstats
path: root/screen.c
diff options
context:
space:
mode:
Diffstat (limited to 'screen.c')
-rw-r--r--screen.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/screen.c b/screen.c
index e7ed769..601d60e 100644
--- a/screen.c
+++ b/screen.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: screen.c,v 1.45 2013/01/08 04:12:51 okan Exp $
+ * $OpenBSD: screen.c,v 1.46 2013/04/12 14:46:30 okan Exp $
*/
#include <sys/param.h>
@@ -31,13 +31,16 @@
#include "calmwm.h"
void
-screen_init(struct screen_ctx *sc, u_int which)
+screen_init(u_int which)
{
+ struct screen_ctx *sc;
Window *wins, w0, w1;
XWindowAttributes winattr;
XSetWindowAttributes rootattr;
u_int nwins, i;
+ sc = xcalloc(1, sizeof(*sc));
+
sc->which = which;
sc->visual = DefaultVisual(X_Dpy, sc->which);
sc->colormap = DefaultColormap(X_Dpy, sc->which);
@@ -84,6 +87,8 @@ screen_init(struct screen_ctx *sc, u_int which)
if (HasRandr)
XRRSelectInput(X_Dpy, sc->rootwin, RRScreenChangeNotifyMask);
+ TAILQ_INSERT_TAIL(&Screenq, sc, entry);
+
XSync(X_Dpy, False);
}