From c58fd6b65a4da45663330f405ab94f24adb4c91d Mon Sep 17 00:00:00 2001
From: Sven Gothel <sgothel@jausoft.com>
Date: Fri, 3 Dec 2010 21:45:37 +0100
Subject: Fix NEWT WindowImpl: setTitleImpl() at native construction.

This tiny fix finally enables the window title setting before setVisible(true)
---
 src/newt/classes/com/jogamp/newt/impl/WindowImpl.java | 1 +
 1 file changed, 1 insertion(+)

(limited to 'src/newt/classes/com')

diff --git a/src/newt/classes/com/jogamp/newt/impl/WindowImpl.java b/src/newt/classes/com/jogamp/newt/impl/WindowImpl.java
index bb30c9a84..eb46ef99e 100644
--- a/src/newt/classes/com/jogamp/newt/impl/WindowImpl.java
+++ b/src/newt/classes/com/jogamp/newt/impl/WindowImpl.java
@@ -285,6 +285,7 @@ public abstract class WindowImpl implements Window, NEWTEventConsumer
                 createNativeImpl();
                 setVisibleImpl(true, x, y, width, height);
                 screen.addScreenModeListener(screenModeListenerImpl);
+                setTitleImpl(title);
             }
         } finally {
             if(null!=parentWindow) {
-- 
cgit v1.2.3