From: Mikko Rasa Date: Tue, 2 Nov 2021 09:57:01 +0000 (+0200) Subject: Formatting fix X-Git-Url: http://git.tdb.fi/?p=libs%2Fgui.git;a=commitdiff_plain;h=6d8bf5a9467ecc0c0cc8b9b1834853d91b3c7af1 Formatting fix --- 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); } }