Browse Source

Fix resource bar UI in hotseat

Ivan Savenko 2 years ago
parent
commit
c171a3d6be
1 changed files with 4 additions and 0 deletions
  1. 4 0
      client/adventureMap/AdventureMapWidget.cpp

+ 4 - 0
client/adventureMap/AdventureMapWidget.cpp

@@ -372,11 +372,15 @@ void AdventureMapWidget::setPlayerChildren(CIntObject * widget, const PlayerColo
 		auto container = dynamic_cast<CAdventureMapContainerWidget *>(entry);
 		auto icon = dynamic_cast<CAdventureMapIcon *>(entry);
 		auto button = dynamic_cast<CButton *>(entry);
+		auto resDataBar = dynamic_cast<CResDataBar *>(entry);
 		auto texture = dynamic_cast<FilledTexturePlayerColored *>(entry);
 
 		if(button)
 			button->setPlayerColor(player);
 
+		if(resDataBar)
+			resDataBar->colorize(player);
+
 		if(icon)
 			icon->setPlayer(player);