From a43d89a4ac9080ba0fe48d574e604260413ef2f9 Mon Sep 17 00:00:00 2001 From: sabetts Date: Thu, 20 Dec 2001 23:42:51 +0000 Subject: * src/manage.c (maximize_transient): always honour the current size of the window. * src/actions.c (cmd_info): print "Transient" if the window is a transient window. --- src/manage.c | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) (limited to 'src/manage.c') diff --git a/src/manage.c b/src/manage.c index de1e358..d95154c 100644 --- a/src/manage.c +++ b/src/manage.c @@ -424,17 +424,10 @@ maximize_transient (rp_window *win) frame = win->frame; - /* Honour the window's maximum size */ - if (win->hints->flags & PMaxSize) - { - maxx = win->hints->max_width; - maxy = win->hints->max_height; - } - else - { - maxx = win->width; - maxy = win->height; - } + /* Always use the window's current width and height for + transients. */ + maxx = win->width; + maxy = win->height; /* Fit the window inside its frame (if it has one) */ if (frame) -- cgit v1.2.3