X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgraphics%2Fx11%2Fwindow.cpp;h=825c049055db86ff31ae7c099b6cedcfecc82e50;hb=6d8bf5a9467ecc0c0cc8b9b1834853d91b3c7af1;hp=0b9eacb41187f138153b71674b26b7ebdd0daa41;hpb=b96dd619fe0bc09f31da8bf23f195a2a9916b839;p=libs%2Fgui.git diff --git a/source/graphics/x11/window.cpp b/source/graphics/x11/window.cpp index 0b9eacb..825c049 100644 --- a/source/graphics/x11/window.cpp +++ b/source/graphics/x11/window.cpp @@ -60,8 +60,8 @@ void Window::platform_init() { XSizeHints hints; hints.flags = PMinSize|PMaxSize; - hints.min_width=hints.max_width = options.width; - hints.min_height=hints.max_height = options.height; + hints.min_width = hints.max_width = options.width; + hints.min_height = hints.max_height = options.height; XSetWMNormalHints(dpy, priv->window, &hints); } }