|
From: Benoit X. (JIRA) <no...@sp...> - 2008-09-01 16:57:15
|
ShowFrameCommand does not restore the MDI frame if minimized.
-------------------------------------------------------------
Key: RCP-568
URL: http://jira.springframework.org/browse/RCP-568
Project: Spring Framework Rich Client Project
Issue Type: Bug
Affects Versions: 1.0.0
Reporter: Benoit Xhenseval
Priority: Minor
Hi
Trivial issue, probably for Peter, if the MDI frame is minimized, using the right-click menu on the desktop to re-select the frame does not restore /de-iconify the frame.
Patch in ShowFrameCommand, simply add setIcon(false).
protected void doExecuteCommand() {
try {
frame.setSelected( true );
frame.setIcon( false );
} catch( PropertyVetoException e ) {
// ignore
}
}
I will provide a SVN patch.
Thanks!
Benoit
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.springframework.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
|