From b8f5cd6cb759644ed949e41da924c62fcd3cbb27 Mon Sep 17 00:00:00 2001
From: scrawl <scrawl@baseoftrash.de>
Date: Sat, 16 Nov 2013 23:55:54 +0100
Subject: [PATCH] Forgot to apply the same fix to companion window

---
 apps/openmw/mwgui/companionwindow.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/apps/openmw/mwgui/companionwindow.cpp b/apps/openmw/mwgui/companionwindow.cpp
index 9698608d6..a0a34108e 100644
--- a/apps/openmw/mwgui/companionwindow.cpp
+++ b/apps/openmw/mwgui/companionwindow.cpp
@@ -86,12 +86,13 @@ void CompanionWindow::onBackgroundSelected()
 void CompanionWindow::open(const MWWorld::Ptr& npc)
 {
     mPtr = npc;
-    setTitle(MWWorld::Class::get(npc).getName(npc));
     updateEncumbranceBar();
 
     mModel = new CompanionItemModel(npc);
     mSortModel = new SortFilterItemModel(mModel);
     mItemView->setModel(mSortModel);
+
+    setTitle(MWWorld::Class::get(npc).getName(npc));
 }
 
 void CompanionWindow::onFrame()