Skip to content
Open
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyobs_gui/telescopewidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,8 +444,8 @@ def _query_simbad(self) -> None:
# always use first result
for r in result:
# set it
self.textMoveRA.setText(r["RA"])
self.textMoveDec.setText(r["DEC"])
self.textMoveRA.setText(str(r["ra"]/15))
self.textMoveDec.setText(str(r["dec"]))

# update destination
self._calc_dest_equatorial(clear=False)
Expand Down