From 58c50b139946143b7d17d573fc35a6cbdfa6fa4a Mon Sep 17 00:00:00 2001 From: tankefugl Date: Wed, 25 May 2005 19:29:41 +0000 Subject: [PATCH] Mantis 0001052: o Fixed bug where order notifications sometimes would display for a commander exiting the CC. Added a check so that a commander will never display nor queue order notifications. git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@134 67975925-1194-0748-b3d5-c16f83f1a3a1 --- main/source/mod/AvHHud.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/source/mod/AvHHud.cpp b/main/source/mod/AvHHud.cpp index 8fc1d6fe..5b17da4f 100644 --- a/main/source/mod/AvHHud.cpp +++ b/main/source/mod/AvHHud.cpp @@ -2088,8 +2088,8 @@ void AvHHud::OrderNotification(const AvHOrder& inOrder) this->PlayHUDSound(theSound); - // tankefugl: 0000992 - if (thePopup) + // tankefugl: 0000992 | 0001052 + if (thePopup && (this->GetInTopDownMode() == false)) { this->SetDisplayOrder(2, this->GetFrameForOrderType(theOrderType), "", "", ""); }