assetsense / gwtwindowmanager

Automatically exported from code.google.com/p/gwtwindowmanager
0 stars 0 forks source link

setActiveFrame does not cause visual changes #44

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Add two frames to the DesktopPane now call the DesktopPane.setActive
(GInternalFrame) for the frame first added.

What is the expected output? What do you see instead?
I would expect the visual properties of the active frame to change 
indicating that this frame is now active.
Nothing happenes visualy.

What version of the product are you using? On what operating system?
0.6 Beta

Please provide any additional information below.

Original issue reported on code.google.com by rco...@gmail.com on 2 May 2007 at 3:49

GoogleCodeExporter commented 8 years ago
Adding the followig public method to DefaultGFrame.java gives applications the 
ability to make an existing frame focused, on top and the Title bar active.

    public void setActive() {
        if (topFrame != this) {
            _show();
        }
    }

Original comment by rco...@gmail.com on 7 May 2007 at 9:10