Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix a typo #1407

Merged
merged 3 commits into from
Jun 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions labelme/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def __init__(
self.toggleKeepPrevMode,
shortcuts["toggle_keep_prev_mode"],
None,
self.tr('Toggle "keep pevious annotation" mode'),
self.tr('Toggle "keep previous annotation" mode'),
checkable=True,
)
toggle_keep_prev_mode.setChecked(self._config["keep_prev"])
Expand Down Expand Up @@ -609,7 +609,7 @@ def __init__(
if self._config["canvas"]["fill_drawing"]:
fill_drawing.trigger()

# Lavel list context menu.
# Label list context menu.
labelMenu = QtWidgets.QMenu()
utils.addActions(labelMenu, (edit, delete))
self.labelList.setContextMenuPolicy(Qt.CustomContextMenu)
Expand Down Expand Up @@ -1016,7 +1016,7 @@ def undoShapeEdit(self):
self.actions.undo.setEnabled(self.canvas.isShapeRestorable)

def tutorial(self):
url = "https://github.com/wkentaro/labelme/tree/main/examples/tutorial" # NOQA
url = "https://github.com/labelmeai/labelme/tree/main/examples/tutorial" # NOQA
webbrowser.open(url)

def toggleDrawingSensitive(self, drawing=True):
Expand Down