From ee3ee1ffa22a6fb6a0a25b6a547ee90f80e2ef4d Mon Sep 17 00:00:00 2001
From: Sven Gothel <sgothel@jausoft.com>
Date: Tue, 10 Sep 2019 01:48:10 +0200
Subject: NEWT Cleanup: WindowImpl: Drop unused 'defer' argument (state change
 only): insetsChanged + insetsVisibleChanged

---
 src/newt/native/X11Window.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'src/newt/native/X11Window.c')

diff --git a/src/newt/native/X11Window.c b/src/newt/native/X11Window.c
index 930d758a2..7ddc5d3d0 100644
--- a/src/newt/native/X11Window.c
+++ b/src/newt/native/X11Window.c
@@ -915,7 +915,7 @@ JNIEXPORT jlongArray JNICALL Java_jogamp_newt_driver_x11_WindowDriver_CreateWind
         // send insets before visibility, allowing java code a proper sync point!
         XSync(dpy, False);
         if( NewtWindows_updateInsets(dpy, javaWindow, &left, &right, &top, &bottom) ) {
-            (*env)->CallVoidMethod(env, javaWindow->jwindow, insetsVisibleChangedID, JNI_FALSE, left, right, top, bottom, 1);
+            (*env)->CallVoidMethod(env, javaWindow->jwindow, insetsVisibleChangedID, left, right, top, bottom, 1);
         } else {
             (*env)->CallVoidMethod(env, javaWindow->jwindow, visibleChangedID, JNI_TRUE);
             left=0; right=0; top=0; bottom=0;
-- 
cgit v1.2.3