Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
rename progress to UI
Browse files Browse the repository at this point in the history
  • Loading branch information
Jules-WinnfieldX committed May 15, 2024
1 parent 853e5b7 commit 3613699
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cyberdrop_dl/ui/prompts/settings_global_prompts.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def edit_global_settings_prompt(manager: Manager) -> None:

# Edit UI Settings
elif action == 3:
edit_progress_settings_prompt(manager)
edit_ui_settings_prompt(manager)

# Done
elif action == 4:
Expand Down Expand Up @@ -96,10 +96,10 @@ def edit_general_settings_prompt(manager: Manager) -> None:
manager.config_manager.global_settings_data['General']['required_free_space'] = int(required_free_space)


def edit_progress_settings_prompt(manager: Manager) -> None:
def edit_ui_settings_prompt(manager: Manager) -> None:
"""Edit the progress settings"""
console.clear()
console.print("Editing Progress Settings")
console.print("Editing UI Settings")
refresh_rate = inquirer.number(
message="Refresh Rate:",
default=int(manager.config_manager.global_settings_data['UI_Options']['refresh_rate']),
Expand Down

0 comments on commit 3613699

Please sign in to comment.