]> git.tdb.fi Git - libs/gui.git/commitdiff
Formatting fix
authorMikko Rasa <tdb@tdb.fi>
Tue, 2 Nov 2021 09:57:01 +0000 (11:57 +0200)
committerMikko Rasa <tdb@tdb.fi>
Tue, 2 Nov 2021 09:57:01 +0000 (11:57 +0200)
source/graphics/x11/window.cpp

index 0b9eacb41187f138153b71674b26b7ebdd0daa41..825c049055db86ff31ae7c099b6cedcfecc82e50 100644 (file)
@@ -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);
        }
 }