all repos — fluxbox @ 83da8b5006fe9bccabb2ed451b6e98cbc6a3903a

custom fork of the fluxbox windowmanager

temporarly disabled skip lower tabs and changed lower window button from press to release
fluxgen fluxgen
commit

83da8b5006fe9bccabb2ed451b6e98cbc6a3903a

parent

9e96f89dbe6ad5a8ace36128d50d1c6737968fa8

1 files changed, 4 insertions(+), 3 deletions(-)

jump to
M src/Screen.ccsrc/Screen.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: Screen.cc,v 1.121 2003/04/15 12:14:53 fluxgen Exp $ +// $Id: Screen.cc,v 1.122 2003/04/15 14:42:03 fluxgen Exp $ #include "Screen.hh"

@@ -1273,7 +1273,7 @@ // setup titlebar

frame.setOnClickTitlebar(raise_and_focus_cmd, 1, false, true); // on press with button 1 frame.setOnClickTitlebar(shade_cmd, 1, true); // doubleclick with button 1 frame.setOnClickTitlebar(show_menu_cmd, 3); // on release with button 3 - frame.setOnClickTitlebar(lower_cmd, 2, false, true); // on press with button 2 + frame.setOnClickTitlebar(lower_cmd, 2); // on release with button 2 frame.setDoubleClickTime(Fluxbox::instance()->getDoubleClickInterval()); // setup menu FbTk::Menu &menu = win.getWindowmenu();

@@ -2152,7 +2152,8 @@ @return true if the windows should be skiped else false

*/ bool BScreen::doSkipWindow(const FluxboxWindow *w, int opts) { return ((opts & CYCLESKIPSTUCK) != 0 && w->isStuck() || // skip if stuck - (opts & CYCLESKIPLOWERTABS) != 0 && w->isLowerTab() || // skip if lower tab + /* (opts & CYCLESKIPLOWERTABS) != 0 && w->isLowerTab() || // skip if lower tab + */ (opts & CYCLESKIPSHADED) != 0 && w->isShaded()); // skip if shaded }