Skip to content

Commit

Permalink
Add job editor to replace the bookmarker module
Browse files Browse the repository at this point in the history
  • Loading branch information
wgergely committed Nov 5, 2023
1 parent 42818dc commit 913605c
Show file tree
Hide file tree
Showing 29 changed files with 2,147 additions and 2,047 deletions.
8 changes: 4 additions & 4 deletions bookmarks/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -728,11 +728,11 @@ def reset_row_size():

@common.error
@common.debug
def show_bookmarker():
"""Shows :class:`~bookmarks.bookmarker.main.BookmarkerWidget`.
def show_job_editor():
"""Shows :class:`~bookmarks.editor.jobs.JobsEditor` widget.
"""
from .bookmarker import main as editor
from .editor import jobs as editor
widget = editor.show()
return widget

Expand Down Expand Up @@ -868,7 +868,7 @@ def add_item():
"""
idx = common.current_tab()
if idx == common.BookmarkTab:
show_bookmarker()
show_job_editor()
elif idx == common.AssetTab:
show_add_asset()
elif idx == common.FileTab:
Expand Down
23 changes: 0 additions & 23 deletions bookmarks/bookmarker/__init__.py

This file was deleted.

Loading

0 comments on commit 913605c

Please sign in to comment.