remove some unnecessary uses of FluxboxWindow::deiconify
This commit is contained in:
parent
a8ec9d97b9
commit
a21572f1b1
2 changed files with 3 additions and 3 deletions
|
@ -1789,7 +1789,7 @@ void FluxboxWindow::stick() {
|
|||
|
||||
void FluxboxWindow::raise() {
|
||||
if (isIconic())
|
||||
deiconify();
|
||||
return;;
|
||||
#ifdef DEBUG
|
||||
cerr<<"FluxboxWindow("<<title()<<")::raise()[layer="<<layerNum()<<"]"<<endl;
|
||||
#endif // DEBUG
|
||||
|
@ -1817,7 +1817,7 @@ void FluxboxWindow::raise() {
|
|||
|
||||
void FluxboxWindow::lower() {
|
||||
if (isIconic())
|
||||
deiconify();
|
||||
return;
|
||||
#ifdef DEBUG
|
||||
cerr<<"FluxboxWindow("<<title()<<")::lower()"<<endl;
|
||||
#endif // DEBUG
|
||||
|
|
|
@ -119,7 +119,7 @@ void Workspace::showAll() {
|
|||
Windows::iterator it = m_windowlist.begin();
|
||||
Windows::iterator it_end = m_windowlist.end();
|
||||
for (; it != it_end; ++it)
|
||||
(*it)->deiconify(false, false);
|
||||
(*it)->show();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue