From 0f1b396dd25f5538da6e199862b9a63aef4167eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ignacio=20Mu=C3=B1oz=20Fernandez?= Date: Fri, 20 Nov 2020 11:34:03 +0100 Subject: [PATCH] chore: variable name changes --- qt_ui/windows/groundobject/QGroundObjectMenu.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qt_ui/windows/groundobject/QGroundObjectMenu.py b/qt_ui/windows/groundobject/QGroundObjectMenu.py index cb07732c..f98bc3d2 100644 --- a/qt_ui/windows/groundobject/QGroundObjectMenu.py +++ b/qt_ui/windows/groundobject/QGroundObjectMenu.py @@ -125,10 +125,10 @@ class QGroundObjectMenu(QDialog): self.financesBoxLayout = QGridLayout() str_total_income = 'Available: ' + str(total_income) + "M" - str_percived_income = 'Receiving: ' + str(received_income) + "M" + str_received_income = 'Receiving: ' + str(received_income) + "M" self.financesBoxLayout.addWidget(QLabel(str_total_income), 2, 1) - self.financesBoxLayout.addWidget(QLabel(str_percived_income), 2, 2) + self.financesBoxLayout.addWidget(QLabel(str_received_income), 2, 2) self.financesBox.setLayout(self.financesBoxLayout) self.buildingBox.setLayout(self.buildingsLayout)