all repos — openbox @ d5a25283dceb4b0eb7f1dcba1ac15674f6422fbe

openbox fork - make it a bit more like ryudo

Fix a minor issue with lastdesktop right after startup.
Mikael Magnusson mikachu@comhem.se
commit

d5a25283dceb4b0eb7f1dcba1ac15674f6422fbe

parent

eddcfdfdcd8e0238f9570358cd47eca773bff8d3

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

jump to
M openbox/screen.copenbox/screen.c

@@ -620,10 +620,15 @@ if (screen_desktop_timeout) {

/* If screen_desktop_timeout is true, then we've been on this desktop long enough and we can save it as the last desktop. */ - /* save the "last desktop" as the "old desktop" */ - screen_old_desktop = screen_last_desktop; - /* save the desktop we're coming from as the "last desktop" */ - screen_last_desktop = previous; + if (screen_last_desktop == previous) + /* this is the startup state only */ + screen_old_desktop = screen_desktop; + else { + /* save the "last desktop" as the "old desktop" */ + screen_old_desktop = screen_last_desktop; + /* save the desktop we're coming from as the "last desktop" */ + screen_last_desktop = previous; + } } else { /* If screen_desktop_timeout is false, then we just got to this desktop