all repos — fluxbox @ b15315445d7751a8539a79992b914335f3870802

custom fork of the fluxbox windowmanager

added middle/rightclick on slitclient-menu-items to move the client up/down in the slit
mathias mathias
commit

b15315445d7751a8539a79992b914335f3870802

parent

de2f362c3d6c081f2b337537e6e2508a37b95b9e

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

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

@@ -177,9 +177,9 @@ bool isSelected() const {

return m_client.visible(); } void click(int button, int time) { - if (button == 4) { // wheel up + if (button == 4 || button == 2) { // wheel up m_slit.clientUp(&m_client); - } else if (button == 5) { // wheel down + } else if (button == 5 || button == 3) { // wheel down m_slit.clientDown(&m_client); } else { m_client.setVisible(!m_client.visible());