From 2ffe876313cc3ae5493a833e15cf6fd66d4aa492 Mon Sep 17 00:00:00 2001 From: Corwin Perren Date: Wed, 14 Feb 2018 18:43:29 -0800 Subject: [PATCH] Fixed compass image loading --- software/ground_station/RoverGroundStation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/software/ground_station/RoverGroundStation.py b/software/ground_station/RoverGroundStation.py index 2e7894a..23f0059 100755 --- a/software/ground_station/RoverGroundStation.py +++ b/software/ground_station/RoverGroundStation.py @@ -104,7 +104,7 @@ class GroundStation(QtCore.QObject): self.start_threads_signal.emit() compass_image = PIL.Image.open("Resources/Images/compass.png").resize((300, 300)) # PIL.Image - self.shared_objects["right_screen"].compass_label.setPixmap(QtGui.QPixmap.fromImage(ImageQt(compass_image))) + self.shared_objects["screens"]["right_screen"].compass_label.setPixmap(QtGui.QPixmap.fromImage(ImageQt(compass_image))) def ___ros_master_running(self): checker = ROSMasterChecker.ROSMasterChecker()