Restored lower window with mouseclick feature and fixed windowmenu bug when resizing
This commit is contained in:
parent
24960df879
commit
900e6da0f2
1 changed files with 5 additions and 5 deletions
|
@ -2760,13 +2760,13 @@ void FluxboxWindow::buttonPressEvent(XButtonEvent *be) {
|
|||
|
||||
screen->getWorkspace(workspace_number)->raiseWindow(this);
|
||||
}
|
||||
/*} else if (be->button == 2 && (be->window != frame.iconify_button) &&
|
||||
(be->window != frame.close_button)) {
|
||||
} else if (be->button == 2 && be->window == frame.label) {
|
||||
screen->getWorkspace(workspace_number)->lowerWindow(this);
|
||||
*/
|
||||
|
||||
} else if (windowmenu && be->button == 3 &&
|
||||
(frame.title == be->window || frame.label == be->window ||
|
||||
frame.handle == be->window || frame.window == be->window)) {
|
||||
(frame.title == be->window || frame.label == be->window ||
|
||||
frame.handle == be->window)) {
|
||||
|
||||
int mx = 0, my = 0;
|
||||
|
||||
if (frame.title == be->window || frame.label == be->window) {
|
||||
|
|
Loading…
Reference in a new issue