diff options
author | akir <akir> | 2004-10-18 01:24:24 (GMT) |
---|---|---|
committer | akir <akir> | 2004-10-18 01:24:24 (GMT) |
commit | 2760b03b2e0a7ee93e4ce70daf73faa609076dff (patch) | |
tree | ec5b2a3312ed65016ecfb1922cc9f5183a7d0d75 /src/Window.cc | |
parent | 65ce32a28e59140f7ad9e599518fabc14712010d (diff) | |
download | fluxbox-2760b03b2e0a7ee93e4ce70daf73faa609076dff.zip fluxbox-2760b03b2e0a7ee93e4ce70daf73faa609076dff.tar.bz2 |
cosmetic changes, added ResizeModel to ScreenRessources
Diffstat (limited to 'src/Window.cc')
-rw-r--r-- | src/Window.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Window.cc b/src/Window.cc index 26fd542..18570a5 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.302 2004/10/17 21:40:15 akir Exp $ | 25 | // $Id: Window.cc,v 1.303 2004/10/18 01:24:24 akir Exp $ |
26 | 26 | ||
27 | #include "Window.hh" | 27 | #include "Window.hh" |
28 | 28 | ||
@@ -2585,7 +2585,7 @@ void FluxboxWindow::motionNotifyEvent(XMotionEvent &me) { | |||
2585 | m_resize_corner = RIGHTBOTTOM; | 2585 | m_resize_corner = RIGHTBOTTOM; |
2586 | else if (me.window == frame().gripLeft()) | 2586 | else if (me.window == frame().gripLeft()) |
2587 | m_resize_corner = LEFTBOTTOM; | 2587 | m_resize_corner = LEFTBOTTOM; |
2588 | else if (screen().getResizeMode() != "quadrant") | 2588 | else if (screen().getResizeModel() != BScreen::QUADRANTRESIZE) |
2589 | m_resize_corner = RIGHTBOTTOM; | 2589 | m_resize_corner = RIGHTBOTTOM; |
2590 | else if (me.x < cx) | 2590 | else if (me.x < cx) |
2591 | m_resize_corner = (me.y < cy) ? LEFTTOP : LEFTBOTTOM; | 2591 | m_resize_corner = (me.y < cy) ? LEFTTOP : LEFTBOTTOM; |