diff options
author | Sven Gothel <[email protected]> | 2010-12-03 21:45:37 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-12-03 21:45:37 +0100 |
commit | c58fd6b65a4da45663330f405ab94f24adb4c91d (patch) | |
tree | 4e02b7b394be2cffaba24b1be3ed9ddf231bc035 /src/newt | |
parent | 80352f4e9f95f358f50f44bf65d04b60f79821bf (diff) |
Fix NEWT WindowImpl: setTitleImpl() at native construction.
This tiny fix finally enables the window title setting before setVisible(true)
Diffstat (limited to 'src/newt')
-rw-r--r-- | src/newt/classes/com/jogamp/newt/impl/WindowImpl.java | 1 |
1 files changed, 1 insertions, 0 deletions
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) { |