Debugger: Fix #14374.

ExpressionPromptWindow:
- Post a quit requested rather than quitting directly. As a consequence of
  this oversight, the team window would never get the notification that the
  prompt had been closed, and would consequently not reset its internal state
  properly.
This commit is contained in:
Rene Gollent
2018-08-20 16:41:58 -04:00
parent b2cb85f4d5
commit 9ebb7ab422
@@ -110,7 +110,7 @@ ExpressionPromptWindow::MessageReceived(BMessage* message)
addMessage.AddBool("persistent", true);
BMessenger(fAddTarget).SendMessage(&addMessage);
Quit();
PostMessage(B_QUIT_REQUESTED);
break;
}