From 816607027012de0205e144f3edd3fdcfd43db563 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 22 Jul 2019 18:49:09 +0200 Subject: Add functions to get and set view size and position --- pugl/detail/x11_cairo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pugl/detail/x11_cairo.c') diff --git a/pugl/detail/x11_cairo.c b/pugl/detail/x11_cairo.c index d5e2ed7..550144a 100644 --- a/pugl/detail/x11_cairo.c +++ b/pugl/detail/x11_cairo.c @@ -55,8 +55,8 @@ static int puglX11CairoCreate(PuglView* view) { PuglInternals* const impl = view->impl; - const int width = view->width; - const int height = view->height; + const int width = (int)view->frame.width; + const int height = (int)view->frame.height; PuglX11CairoSurface surface = { 0 }; surface.back = cairo_xlib_surface_create( -- cgit v1.2.1