Skip to content

Commit

Permalink
[Release] Update to v1.1.1
Browse files Browse the repository at this point in the history
- Add tooltip for encryption help icon
  • Loading branch information
redromnon committed Apr 7, 2023
1 parent 73e3c4a commit 2982add
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from ui.app import App
from ui.about import get_version

version = "v1.1.0"
version = "v1.1.1"

def main(page: ft.Page):

Expand Down
2 changes: 1 addition & 1 deletion src/ui/encrypt.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def build(self):
)

self.info_button = ft.IconButton(
icon=ft.icons.INFO_ROUNDED, icon_size=28, on_click=self.toggle_help
icon=ft.icons.INFO_ROUNDED, icon_size=28, on_click=self.toggle_help, tooltip="Show encryption help"
)

self.encrypt_help = ft.AlertDialog(
Expand Down
4 changes: 2 additions & 2 deletions src/ui/operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def backup(self, folder, pwd):

while True:

#Benefits smoother scrolling of lib_output texfield
#Benefits smoother scrolling for lib_output texfield
time.sleep(0.5)
line = process.stdout.readline().decode()

Expand Down Expand Up @@ -70,7 +70,7 @@ def restore(self, folder, pwd):

while True:

#Benefits smoother scrolling of lib_output texfield
#Benefits smoother scrolling for lib_output texfield
time.sleep(0.5)
line = process.stdout.readline().decode()

Expand Down

0 comments on commit 2982add

Please sign in to comment.