Skip to content

Commit

Permalink
Auto-resize now works if the world is not connected
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgammon committed Nov 29, 2010
1 parent 30d17ff commit 34837b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mushview.cpp
Expand Up @@ -3201,9 +3201,9 @@ WINDOWPLACEMENT wp;
wp.length = sizeof (wp);
GetOwner()->GetOwner()->GetWindowPlacement (&wp);

// don't resize if not active, or minimized, or closed
// don't resize if not active, or minimized [, or closed - removed v4.71]
if (wp.showCmd != SW_MINIMIZE &&
pDoc->m_iConnectPhase == eConnectConnectedToMud &&
// pDoc->m_iConnectPhase == eConnectConnectedToMud &&
(
pDoc->m_pActiveOutputView == this ||
pDoc->m_pActiveCommandView == m_bottomview
Expand Down

0 comments on commit 34837b5

Please sign in to comment.