On Thu, 11 Jul 2002 10:40:24 -0700 (PDT)
"Sean 'Shaleh' Perry" <[EMAIL PROTECTED]> wrote:

> Have you or a friend recently been through a college programming course
> where they forced you to learn Java?  Now is your chance to use this
> knowledge to help the blackbox community.

Hmmm no real college programming, but I hope you'll still accept my
submission.  =^P 

> We are receiving reports of odd sized windows.  Transients, main
> windows, all of them.  Simple programs which open and modify windows
> sizes AND demonstrate this bug would be VERY helpful.  

Attached is a simple GUI java app which can reproduce the problem ~ 1 in 5
times under Blackbox (source and class).  I've also attached the
redirected output from Blackbox with the requested verbosity patches.  The
window id for the java app was always 0x1000021.

> Be sure if
> possible that the app looks correct under twm or some other trusted
> window manager, preferably several.  

Ran this same app under Window Maker 25 times without a replication of the
error.

> If you live in the San Francisco bay area I am willing to hack at a
> common location (your place, my place, whereever).  Some nice ale would
> be appreciated but definately not required.

I don't live in the SF area, but a beer is certainly on me for a fix to
this.

Note: didn't figure anyone would mind all the items being directly attach
as they are only a whopping 1633 bytes total.

-- 
Jamin W. Collins

Attachment: DemoApp.class
Description: application/java-vm

import javax.swing.*;

public class DemoApp
{
  static JFrame aWindow = new JFrame("Quick Demo App");
  
  public static void main(String[] args)
  {
    aWindow.setBounds(50, 100, 400, 150);
    aWindow.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
    aWindow.setVisible(true);
  }
}

Attachment: bb-log.gz
Description: Binary data

Reply via email to