summaryrefslogtreecommitdiff
path: root/openbox
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-12-22 18:54:14 +0000
committerDana Jansens <danakj@orodu.net>2003-12-22 18:54:14 +0000
commitfb0cd132547c1745ea81683c272b46c058bb33b4 (patch)
tree433073d4b9e51b92aa2d10dac5817e96d241d4bc /openbox
parent6f8d9cde7dd5a4dfc0faec64e3feb65943a4f01a (diff)
dont persist the linear state, not sure why i did it and it breaks stuff. hope changing this doesnt break other stuff!!! closes #1025
Diffstat (limited to 'openbox')
-rw-r--r--openbox/screen.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/openbox/screen.c b/openbox/screen.c
index 6d7a56f1..810d66b1 100644
--- a/openbox/screen.c
+++ b/openbox/screen.c
@@ -605,7 +605,6 @@ guint screen_cycle_desktop(ObDirection dir, gboolean wrap, gboolean linear,
gboolean dialog, gboolean done, gboolean cancel)
{
static gboolean first = TRUE;
- static gboolean lin;
static guint origd, d;
guint r, c;
@@ -617,13 +616,12 @@ guint screen_cycle_desktop(ObDirection dir, gboolean wrap, gboolean linear,
}
if (first) {
first = FALSE;
- lin = linear;
d = origd = screen_desktop;
}
get_row_col(d, &r, &c);
- if (lin) {
+ if (linear) {
switch (dir) {
case OB_DIRECTION_EAST:
if (d < screen_num_desktops - 1)