We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ca8534 commit 14e211cCopy full SHA for 14e211c
ORStools/gui/ORStoolsDialog.py
@@ -847,7 +847,13 @@ def _reindex_list_items(self) -> None:
847
annotation = self._linetool_annotate_point(point, idx)
848
self.annotations.append(annotation)
849
self.project.annotationManager().addAnnotation(annotation)
850
- self.create_rubber_band()
+ try:
851
+ self.create_rubber_band()
852
+ except Exception as e:
853
+ if "Connection refused" in str(e):
854
+ self.api_key_message_bar()
855
+ else:
856
+ raise e
857
858
def _on_line_tool_map_doubleclick(self):
859
"""
0 commit comments