root window scrolling
This commit is contained in:
parent
541458304b
commit
0790b898ea
1 changed files with 6 additions and 2 deletions
|
@ -22,7 +22,7 @@
|
|||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
|
||||
// $Id: fluxbox.cc,v 1.50 2002/04/12 13:02:56 fluxgen Exp $
|
||||
// $Id: fluxbox.cc,v 1.51 2002/04/17 06:57:10 fluxgen Exp $
|
||||
|
||||
//Use some GNU extensions
|
||||
#ifndef _GNU_SOURCE
|
||||
|
@ -974,7 +974,11 @@ void Fluxbox::handleButtonEvent(XButtonEvent &be) {
|
|||
checkMenu();
|
||||
screen->getRootmenu()->show();
|
||||
}
|
||||
} // end button == 3
|
||||
} else if (be.button == 4) {
|
||||
screen->nextWorkspace(1);
|
||||
} else if (be.button == 5) {
|
||||
screen->nextWorkspace(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue