aboutsummaryrefslogtreecommitdiffstats
path: root/src/x11.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-12-27 20:43:57 -0500
committerDavid Robillard <d@drobilla.net>2022-12-27 20:43:57 -0500
commitabe98d55c8775619f9392e16289c6d15c06b39b6 (patch)
tree162417ad2d418b555cbdcf27be2e50975a318af8 /src/x11.c
parentef19bb7e8f170db9fcd32b89b413c9b0a8f6d8c4 (diff)
downloadpugl-abe98d55c8775619f9392e16289c6d15c06b39b6.tar.gz
pugl-abe98d55c8775619f9392e16289c6d15c06b39b6.tar.bz2
pugl-abe98d55c8775619f9392e16289c6d15c06b39b6.zip
Fix inconsistent initial window positioning across platforms
Diffstat (limited to 'src/x11.c')
-rw-r--r--src/x11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/x11.c b/src/x11.c
index 6affa9f..78cd48e 100644
--- a/src/x11.c
+++ b/src/x11.c
@@ -369,7 +369,7 @@ puglRealize(PuglView* const view)
}
// Set the size to the default if it has not already been set
- if (view->frame.width <= 0.0 && view->frame.height <= 0.0) {
+ if (view->frame.width <= 0.0 || view->frame.height <= 0.0) {
const PuglViewSize defaultSize = view->sizeHints[PUGL_DEFAULT_SIZE];
if (!defaultSize.width || !defaultSize.height) {
return PUGL_BAD_CONFIGURATION;