From 9801d98e257ce6a60418d3b4327b5b1d571adb82 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 28 May 2021 16:07:58 -0400 Subject: Fix questionable float equality comparison This avoids a warning, and makes more sense in this situation anyway because negatives are also a bad configuration. --- src/win.c | 4 ++-- src/x11.c | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/win.c b/src/win.c index 190a87c..dc1e62c 100644 --- a/src/win.c +++ b/src/win.c @@ -1195,8 +1195,8 @@ puglWinCreateWindow(PuglView* const view, const unsigned winFlags = puglWinGetWindowFlags(view); const unsigned winExFlags = puglWinGetWindowExFlags(view); - if (view->frame.width == 0.0 && view->frame.height == 0.0) { - if (view->defaultWidth == 0.0 && view->defaultHeight == 0.0) { + if (view->frame.width <= 0.0 && view->frame.height <= 0.0) { + if (view->defaultWidth <= 0.0 && view->defaultHeight <= 0.0) { return PUGL_BAD_CONFIGURATION; } diff --git a/src/x11.c b/src/x11.c index 6ac7b90..57dbea5 100644 --- a/src/x11.c +++ b/src/x11.c @@ -303,8 +303,8 @@ 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->defaultWidth == 0.0 || view->defaultHeight == 0.0) { + if (view->frame.width <= 0.0 && view->frame.height <= 0.0) { + if (view->defaultWidth <= 0.0 || view->defaultHeight <= 0.0) { return PUGL_BAD_CONFIGURATION; } @@ -313,7 +313,7 @@ puglRealize(PuglView* const view) } // Center top-level windows if a position has not been set - if (!view->parent && view->frame.x == 0.0 && view->frame.y == 0.0) { + if (!view->parent && view->frame.x <= 0.0 && view->frame.y <= 0.0) { const int screenWidth = DisplayWidth(display, screen); const int screenHeight = DisplayHeight(display, screen); -- cgit v1.2.1