assetsense / gwtwindowmanager

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

Dragging window-caption outside viewable area prevents user to access buttons #25

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Open a window
2. Drag the window to the top so that the caption is out of the viewable area

What is the expected output? What do you see instead?
You cannot click on the buttons anymore or re-drag the window.
In an OS like WXP you cannot move the mouse outside of the viewable area,
thus preventing the dragging of the caption out of the screen.

What version of the product are you using? On what operating system?
0.5 on Windows XP (GWT 1.3.3)

Please provide any additional information below.
Hotfix through events:
   public void frameMoved(GInternalFrameEvent evt) {
         GInternalFrame src = evt.getGInternalFrame();
         if (src.getTop() < 0)
             src.setTop(0);
   } 

Original issue reported on code.google.com by robbie.d...@gmail.com on 15 Feb 2007 at 11:23

GoogleCodeExporter commented 8 years ago

Original comment by luciano.broussal@gmail.com on 21 Feb 2007 at 9:06