all repos — fluxbox @ 0790b898eadf5b9fbe0d6c8d2fd5b0892102fb8f

custom fork of the fluxbox windowmanager

root window scrolling
fluxgen fluxgen
commit

0790b898eadf5b9fbe0d6c8d2fd5b0892102fb8f

parent

541458304bad12d411470df7277accd0e7c2912f

1 files changed, 6 insertions(+), 2 deletions(-)

jump to
M src/fluxbox.ccsrc/fluxbox.cc

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// 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 @@ if (! screen->getRootmenu()->isVisible()) {

checkMenu(); screen->getRootmenu()->show(); } - } // end button == 3 + } else if (be.button == 4) { + screen->nextWorkspace(1); + } else if (be.button == 5) { + screen->nextWorkspace(1); + } } } }