1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-06 13:54:12 +01:00

Autoarrange icons after unhiding an application that has miniaturized

windows, else they may cover other icons which are now in the positions
they have occupied before hiding
This commit is contained in:
dan
2003-02-27 07:42:46 +00:00
parent dee8c6e770
commit fdeb749da7
4 changed files with 15 additions and 6 deletions

View File

@@ -2432,15 +2432,16 @@ handleTextKeyPress(Text *tPtr, XEvent *event)
Bool i = !tPtr->flags.rulerShown;
WMShowTextRuler(tPtr, i);
tPtr->flags.rulerShown = i;
}
else if (control_pressed && *buffer == '')
} else if (control_pressed && *buffer == '\a') {
XBell(tPtr->view->screen->display, 0);
else
WMRelayToNextResponder(tPtr->view, event);
} else {
WMRelayToNextResponder(tPtr->view, event);
}
}
if (!control_pressed && tPtr->flags.ownsSelection)
if (!control_pressed && tPtr->flags.ownsSelection) {
releaseSelection(tPtr);
}
}