This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project wmaker-crm.git.
The branch, next has been updated
via dda7f484072d04e6235a354307dd1199c6136fd4 (commit)
via e749c455c61664dac98f5429d130a39ba59255b4 (commit)
from 29301d9b038776dae7a58bf762b95af676f78cde (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://repo.or.cz/w/wmaker-crm.git/commit/dda7f484072d04e6235a354307dd1199c6136fd4
commit dda7f484072d04e6235a354307dd1199c6136fd4
Author: Amadeusz Sławiński <[email protected]>
Date: Mon May 26 01:01:05 2014 +0200
wmaker: alt-tab to shaded windows when "SwitchPanelImages = None" is set
Reported-by: Josip Deanovic <[email protected]>
Signed-off-by: Amadeusz Sławiński <[email protected]>
diff --git a/src/switchpanel.c b/src/switchpanel.c
index e7bee409..041e1675 100644
--- a/src/switchpanel.c
+++ b/src/switchpanel.c
@@ -373,7 +373,7 @@ static WMArray *makeWindowListArray(WWindow *curwin, int
include_unmapped, Bool
for (fl = 0; fl < 2; fl++) {
for (wwin = curwin; wwin; wwin = wwin->prev) {
if (((!fl && canReceiveFocus(wwin) > 0) || (fl &&
canReceiveFocus(wwin) < 0)) &&
- (wwin->flags.mapped || include_unmapped)) {
+ (wwin->flags.mapped || wwin->flags.shaded ||
include_unmapped)) {
if (class_only)
if (!sameWindowClass(wwin, curwin))
continue;
@@ -389,7 +389,7 @@ static WMArray *makeWindowListArray(WWindow *curwin, int
include_unmapped, Bool
for (wwin = curwin; wwin && wwin != curwin; wwin = wwin->prev) {
if (((!fl && canReceiveFocus(wwin) > 0) || (fl &&
canReceiveFocus(wwin) < 0)) &&
- (wwin->flags.mapped || include_unmapped)) {
+ (wwin->flags.mapped || wwin->flags.shaded ||
include_unmapped)) {
if (class_only)
if (!sameWindowClass(wwin, curwin))
continue;
http://repo.or.cz/w/wmaker-crm.git/commit/e749c455c61664dac98f5429d130a39ba59255b4
commit e749c455c61664dac98f5429d130a39ba59255b4
Author: Amadeusz Sławiński <[email protected]>
Date: Mon May 26 01:01:04 2014 +0200
wmaker: raise shaded window when alt tabbing
Reported-by: Josip Deanovic <[email protected]>
Signed-off-by: Amadeusz Sławiński <[email protected]>
diff --git a/src/cycling.c b/src/cycling.c
index e752aee7..9331739c 100644
--- a/src/cycling.c
+++ b/src/cycling.c
@@ -43,7 +43,7 @@ static void raiseWindow(WSwitchPanel * swpanel, WWindow *
wwin)
{
Window swwin = wSwitchPanelGetWindow(swpanel);
- if (wwin->flags.mapped) {
+ if (wwin->flags.mapped || wwin->flags.shaded) {
if (swwin != None) {
Window win[2];
-----------------------------------------------------------------------
Summary of changes:
src/cycling.c | 2 +-
src/switchpanel.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
repo.or.cz automatic notification. Contact project admin [email protected]
if you want to unsubscribe, or site admin [email protected] if you receive
no reply.
--
wmaker-crm.git ("The Window Maker window manager")
--
To unsubscribe, send mail to [email protected].