Bug Report: Browser

ScottMattes

Member³
I have mentioned this before, but it is still in 7.1 so I bring it up again.

Windows XP Pro, PL/SQL Dev 7.1.1.1339. Autosave Desktop is checked. Browser and Window List docked together (but problem still happens with just having the Browser by itself)

With browser open and sized to perfection and any other window, or no windows open, I close the browser by clicking the red x. Now I want it back so I do Tools / Browser and while the Browser does reappear, it is now just wide enough to show the red x and I have to resize it.
 
If you have AutoHotKey this is a work around (just put the cursor to the left of the red x and press Win-a

#a:: ; Win-a to activate
; get the window name and the control name & hwnd
MouseGetPos, , , WhichWindow, ControlHwnd, 2
MouseGetPos, , , WhichWindow, WhichControl

; get the current position and dimensions
ControlGetPos, x, y, w, h, %WhichControl%, ahk_id %WhichWindow%
; msgbox, %WhichControl% x=%x% y=%y% w=%w% h=%h%

; set the new width
ControlMove, , , , 200, , ahk_id %ControlHwnd%

return
 
Back
Top