Deskbar: remove mistaken double assignment

This commit is contained in:
John Scipione
2020-02-19 18:44:13 -05:00
parent 7211f720c8
commit 03399b17b8
+1 -1
View File
@@ -249,7 +249,7 @@ TReplicantTray::GetPreferredSize(float* preferredWidth, float* preferredHeight)
// this view has a fixed minimum width // this view has a fixed minimum width
width = std::max(kMinimumTrayWidth, width); width = std::max(kMinimumTrayWidth, width);
height = height = fBarView->TeamMenuItemHeight(); height = fBarView->TeamMenuItemHeight();
} }
*preferredWidth = width; *preferredWidth = width;