Skip to content

Commit

Permalink
fix: gui images
Browse files Browse the repository at this point in the history
image path for GUI is wrong
  • Loading branch information
JarbasAl committed Nov 16, 2024
1 parent 8c22589 commit 1f2f846
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def generate_map(self, lat, lon):
m.bluemarble()
x, y = m(lon, lat)

iss = plt.imread(self.settings.get("iss_icon", f"{self.root_dir}/ui/iss3.png"))
iss = plt.imread(self.settings.get("iss_icon", f"{self.root_dir}/gui/all/iss3.png"))
im = OffsetImage(iss, zoom=self.settings["iss_size"])
ab = AnnotationBbox(im, (x, y), xycoords='data', frameon=False)

Expand Down

0 comments on commit 1f2f846

Please sign in to comment.