diff options
author | fluxgen <fluxgen> | 2003-04-15 14:42:03 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-04-15 14:42:03 (GMT) |
commit | 83da8b5006fe9bccabb2ed451b6e98cbc6a3903a (patch) | |
tree | 7350c6129708736bfd2d7d2ac8db092990ac34d5 | |
parent | 9e96f89dbe6ad5a8ace36128d50d1c6737968fa8 (diff) | |
download | fluxbox-83da8b5006fe9bccabb2ed451b6e98cbc6a3903a.zip fluxbox-83da8b5006fe9bccabb2ed451b6e98cbc6a3903a.tar.bz2 |
temporarly disabled skip lower tabs and changed lower window button from press to release
-rw-r--r-- | src/Screen.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Screen.cc b/src/Screen.cc index 37efadd..887e8fc 100644 --- a/src/Screen.cc +++ b/src/Screen.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Screen.cc,v 1.121 2003/04/15 12:14:53 fluxgen Exp $ | 25 | // $Id: Screen.cc,v 1.122 2003/04/15 14:42:03 fluxgen Exp $ |
26 | 26 | ||
27 | 27 | ||
28 | #include "Screen.hh" | 28 | #include "Screen.hh" |
@@ -1273,7 +1273,7 @@ void BScreen::setupWindowActions(FluxboxWindow &win) { | |||
1273 | frame.setOnClickTitlebar(raise_and_focus_cmd, 1, false, true); // on press with button 1 | 1273 | frame.setOnClickTitlebar(raise_and_focus_cmd, 1, false, true); // on press with button 1 |
1274 | frame.setOnClickTitlebar(shade_cmd, 1, true); // doubleclick with button 1 | 1274 | frame.setOnClickTitlebar(shade_cmd, 1, true); // doubleclick with button 1 |
1275 | frame.setOnClickTitlebar(show_menu_cmd, 3); // on release with button 3 | 1275 | frame.setOnClickTitlebar(show_menu_cmd, 3); // on release with button 3 |
1276 | frame.setOnClickTitlebar(lower_cmd, 2, false, true); // on press with button 2 | 1276 | frame.setOnClickTitlebar(lower_cmd, 2); // on release with button 2 |
1277 | frame.setDoubleClickTime(Fluxbox::instance()->getDoubleClickInterval()); | 1277 | frame.setDoubleClickTime(Fluxbox::instance()->getDoubleClickInterval()); |
1278 | // setup menu | 1278 | // setup menu |
1279 | FbTk::Menu &menu = win.getWindowmenu(); | 1279 | FbTk::Menu &menu = win.getWindowmenu(); |
@@ -2152,7 +2152,8 @@ void BScreen::leftWorkspace(const int delta) { | |||
2152 | */ | 2152 | */ |
2153 | bool BScreen::doSkipWindow(const FluxboxWindow *w, int opts) { | 2153 | bool BScreen::doSkipWindow(const FluxboxWindow *w, int opts) { |
2154 | return ((opts & CYCLESKIPSTUCK) != 0 && w->isStuck() || // skip if stuck | 2154 | return ((opts & CYCLESKIPSTUCK) != 0 && w->isStuck() || // skip if stuck |
2155 | (opts & CYCLESKIPLOWERTABS) != 0 && w->isLowerTab() || // skip if lower tab | 2155 | /* (opts & CYCLESKIPLOWERTABS) != 0 && w->isLowerTab() || // skip if lower tab |
2156 | */ | ||
2156 | (opts & CYCLESKIPSHADED) != 0 && w->isShaded()); // skip if shaded | 2157 | (opts & CYCLESKIPSHADED) != 0 && w->isShaded()); // skip if shaded |
2157 | } | 2158 | } |
2158 | 2159 | ||