diff options
Diffstat (limited to 'src/Window.cc')
-rw-r--r-- | src/Window.cc | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/Window.cc b/src/Window.cc index 0ab1f00..38fe3f5 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Window.cc,v 1.230 2003/09/15 20:27:06 fluxgen Exp $ | 25 | // $Id: Window.cc,v 1.231 2003/09/16 13:11:42 rathnor Exp $ |
26 | 26 | ||
27 | #include "Window.hh" | 27 | #include "Window.hh" |
28 | 28 | ||
@@ -2599,6 +2599,10 @@ void FluxboxWindow::setDecoration(Decoration decoration) { | |||
2599 | void FluxboxWindow::applyDecorations(bool initial) { | 2599 | void FluxboxWindow::applyDecorations(bool initial) { |
2600 | frame().clientArea().setBorderWidth(0); // client area bordered by other things | 2600 | frame().clientArea().setBorderWidth(0); // client area bordered by other things |
2601 | 2601 | ||
2602 | int grav_x=0, grav_y=0; | ||
2603 | // negate gravity | ||
2604 | frame().gravityTranslate(grav_x, grav_y, -m_client->gravity(), false); | ||
2605 | |||
2602 | unsigned int border_width = 0; | 2606 | unsigned int border_width = 0; |
2603 | if (decorations.border) | 2607 | if (decorations.border) |
2604 | border_width = frame().theme().border().width(); | 2608 | border_width = frame().theme().border().width(); |
@@ -2617,6 +2621,13 @@ void FluxboxWindow::applyDecorations(bool initial) { | |||
2617 | } else | 2621 | } else |
2618 | frame().hideHandle(); | 2622 | frame().hideHandle(); |
2619 | 2623 | ||
2624 | // apply gravity once more | ||
2625 | frame().gravityTranslate(grav_x, grav_y, m_client->gravity(), false); | ||
2626 | |||
2627 | // if the location changes, shift it | ||
2628 | if (grav_x != 0 || grav_y != 0) | ||
2629 | frame().move(grav_x + frame().x(), grav_y + frame().y()); | ||
2630 | |||
2620 | frame().reconfigure(); | 2631 | frame().reconfigure(); |
2621 | } | 2632 | } |
2622 | 2633 | ||