2 - Allow ESC key to close window.
Currently, the ESCAPE key does not dismiss the SuperQueue window. You have to click on the X button to do so. Please consider allowing ESCAPE to close the window.
- 2 comments
- 2 comments
Facts
- Last updated on
- 12 Oct 2008
- Reported on
- 02 Oct 2008
- Status
- Accepted - Problem reproduced / Need acknowledged.
- Type
- Enhancement - A change which is intended to better the project in some way
- Priority
- Low - Might slip to a later milestone.
- #2
Elder82 Sun, 05 Oct 2008 21:06:09Change SuperQueueWindow.show and hide as follow :)
function SuperQueueWindow.hide() WindowSetShowing("SuperQueueWindow", false) WindowUtils.RemoveFromOpenList( "SuperQueueWindow" ) end function SuperQueueWindow.show() WindowSetShowing("SuperQueueWindow", true) WindowUtils.RemoveFromOpenList( "SuperQueueWindow" ) WindowUtils.AddToOpenList( "SuperQueueWindow", nil, WindowUtils.Cascade.MODE_NONE ) endnotes:
- #1
Shakakaw Thu, 02 Oct 2008 03:55:57I will look into this.