From 03399b17b8e2415ef3731cb3c22c6e0cafaa7529 Mon Sep 17 00:00:00 2001 From: John Scipione Date: Wed, 19 Feb 2020 18:44:13 -0500 Subject: [PATCH] Deskbar: remove mistaken double assignment --- src/apps/deskbar/StatusView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/deskbar/StatusView.cpp b/src/apps/deskbar/StatusView.cpp index df339e5b84..462f67846e 100644 --- a/src/apps/deskbar/StatusView.cpp +++ b/src/apps/deskbar/StatusView.cpp @@ -249,7 +249,7 @@ TReplicantTray::GetPreferredSize(float* preferredWidth, float* preferredHeight) // this view has a fixed minimum width width = std::max(kMinimumTrayWidth, width); - height = height = fBarView->TeamMenuItemHeight(); + height = fBarView->TeamMenuItemHeight(); } *preferredWidth = width;