Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
TechGeek01 committed Mar 31, 2021
1 parent 37469f1 commit 8b041af
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.

## 3.1.1 - 2021-03-31
### Fixed
- Fixed incorrect accelerator in tools menu

## 3.1.0 - 2021-03-30
### Fixed
- Fixed typo in CLI mode
Expand Down
4 changes: 2 additions & 2 deletions backdrop.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
exit()

# Set meta info
APP_VERSION = '3.1.0'
APP_VERSION = '3.1.1'

# Set constants
SOURCE_MODE_SINGLE = 'single'
Expand Down Expand Up @@ -3238,7 +3238,7 @@ def on_close():

# Tools menu
tools_menu = tk.Menu(menubar, tearoff=0)
tools_menu.add_command(label='Verify Data Integrity on Selected Drives', underline=0, accelerator='WIP', command=start_verify_data_from_hash_list)
tools_menu.add_command(label='Verify Data Integrity on Selected Drives', underline=0, command=start_verify_data_from_hash_list)
tools_menu.add_command(label='Config Builder', underline=7, accelerator='Ctrl+B', command=show_config_builder)
menubar.add_cascade(label='Tools', underline=0, menu=tools_menu)

Expand Down

0 comments on commit 8b041af

Please sign in to comment.