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 26581ffb5881bf7ab9caaa791f141631e975ac7e (commit)
from fab03fd0f6aa80e9f2eff1813f553f64340120e4 (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/26581ffb5881bf7ab9caaa791f141631e975ac7e
commit 26581ffb5881bf7ab9caaa791f141631e975ac7e
Author: Amadeusz SÅawiÅski <[email protected]>
Date: Mon Nov 11 00:02:42 2013 +0100
fix area for miniwindows placement
wGetUsableAreaForHead returns area used for maximizing windows,
when "... do not cover dock" is unchecked miniwindows end up being
placed under dock, fix this by taking this option into account when
calculating placement area
diff --git a/src/actions.c b/src/actions.c
index 1087117..996c93b 100644
--- a/src/actions.c
+++ b/src/actions.c
@@ -1764,6 +1764,13 @@ void wArrangeIcons(WScreen *scr, Bool arrangeAll)
vars[head].yo = vars[head].sy2 - isize;
vars[head].ys = -1;
}
+ if (scr->dock && (scr->dock->lowered &&
!wPreferences.no_window_over_dock)) {
+ if (scr->dock->on_right_side) {
+ vars[head].xo -= wPreferences.icon_size;
+ } else {
+ vars[head].xo += wPreferences.icon_size;
+ }
+ }
}
#define X ((wPreferences.icon_yard & IY_VERT)
-----------------------------------------------------------------------
Summary of changes:
src/actions.c | 7 +++++++
1 files changed, 7 insertions(+), 0 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].