summaryrefslogtreecommitdiff
path: root/plugins/placement
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/placement')
-rw-r--r--plugins/placement/placement.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/placement/placement.c b/plugins/placement/placement.c
index e4975055..83f0e77e 100644
--- a/plugins/placement/placement.c
+++ b/plugins/placement/placement.c
@@ -28,6 +28,12 @@ void plugin_setup_config()
static Rect* pick_head(ObClient *c)
{
+ /* try direct parent first */
+ if (c->transient_for && c->transient_for != TRAN_GROUP) {
+ return screen_area_monitor(c->desktop,
+ client_monitor(c->transient_for));
+ }
+
/* more than one guy in his group (more than just him) */
if (c->group && c->group->members->next) {
GSList *it;