Skip to content

Commit

Permalink
V0.54.1
Browse files Browse the repository at this point in the history
  • Loading branch information
domhnallmorr committed Nov 4, 2023
1 parent a6a873e commit b961e2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __init__(self, parent, *args, **kwargs):
self.controller = controller.Controller(root, parent, self)

# ----------------- VERSION -----------------------
self.version = "0.54.0"
self.version = "0.54.1"

# ----------------- WEEK NUMBER -----------------------
year, week_num, day_of_week = datetime.date.today().isocalendar()
Expand Down
2 changes: 2 additions & 0 deletions src/view/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,11 @@ def update_branch_tab(self, data, mode="normal"):

def delete_root_tab(self, root_id):
self.root_tabs[root_id].destroy()
del self.root_tabs[root_id]

def delete_branch_tab(self, branch_id):
self.branch_tabs[branch_id].destroy()
del self.branch_tabs[branch_id]

def show_error(self, msg):
messagebox.showerror("Error", message=msg)
Expand Down

0 comments on commit b961e2e

Please sign in to comment.