Skip to content

Commit

Permalink
improve wording
Browse files Browse the repository at this point in the history
  • Loading branch information
L-M-Sherlock committed Sep 20, 2024
1 parent 3053ed4 commit 9ea87d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions schedule/easy_days.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,8 @@ def __init__(self, config: Config):
"Saturday",
"Sunday",
]
self.modes = ["Normal", "Reduce", "Minimize"]
self.mode_values = {"Normal": 1.0, "Reduce": 0.5, "Minimize": 0.0}
self.modes = ["Normal", "Reduced", "Minimum"]
self.mode_values = {"Normal": 1.0, "Reduced": 0.5, "Minimum": 0.0}

self.radio_buttons = {}

Expand All @@ -256,7 +256,7 @@ def __init__(self, config: Config):
self.layout.addWidget(self.saveBtn)

self.setLayout(self.layout)
self.setWindowTitle("Set the review ratio for each day of the week")
self.setWindowTitle("Set the review amount for each day of the week")
self.resize(400, 250)

def save_settings(self):
Expand Down

0 comments on commit 9ea87d8

Please sign in to comment.