[haiku-commits] r36979 - haiku/branches/features/stack-and-tile/src/servers/app

  • From: clemens.zeidler@xxxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 31 May 2010 23:49:26 +0200 (CEST)

Author: czeidler
Date: 2010-05-31 23:49:25 +0200 (Mon, 31 May 2010)
New Revision: 36979
Changeset: http://dev.haiku-os.org/changeset/36979/haiku

Modified:
   haiku/branches/features/stack-and-tile/src/servers/app/ServerWindow.cpp
Log:
Remove SAT call from ServerWindow, I think this is not needed.



Modified: 
haiku/branches/features/stack-and-tile/src/servers/app/ServerWindow.cpp
===================================================================
--- haiku/branches/features/stack-and-tile/src/servers/app/ServerWindow.cpp     
2010-05-31 19:39:45 UTC (rev 36978)
+++ haiku/branches/features/stack-and-tile/src/servers/app/ServerWindow.cpp     
2010-05-31 21:49:25 UTC (rev 36979)
@@ -897,9 +897,6 @@
                                fDesktop->ResizeWindowBy(fWindow,
                                        xResizeTo - fWindow->Frame().Width(),
                                        yResizeTo - fWindow->Frame().Height());
-                               //Re-apply stack & tile constraints so that any 
other windows
-                               //that are stacked/snapped against this window 
can be re-adjusted
-                               
fWindow->GetStackAndTileWindow()->StackAndTile();
                                fLink.StartMessage(B_OK);
 //                     }
                        fLink.Flush();
@@ -924,9 +921,6 @@
                        } else {
                                fDesktop->MoveWindowBy(fWindow, xMoveTo - 
fWindow->Frame().left,
                                        yMoveTo - fWindow->Frame().top);
-                               //Re-apply stack & tile constraints so that any 
other windows
-                               //that are stacked/snapped against this window 
can be re-adjusted
-                               
fWindow->GetStackAndTileWindow()->StackAndTile();
                                fLink.StartMessage(B_OK);
                        }
                        fLink.Flush();


Other related posts:

  • » [haiku-commits] r36979 - haiku/branches/features/stack-and-tile/src/servers/app - clemens . zeidler