Changed repeat error sentence

This commit is contained in:
LOUDO 2024-02-07 13:53:05 +01:00
parent 859da45f72
commit 7f8a72ca76
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ class Repeat(Popup):
def setNewRepeat(self, newValue):
if newValue <= 0:
messagebox.showerror("Error", "You can't have lower than 1 repeat")
messagebox.showerror("Error", "You cannot have less than 1 repetition.")
else:
self.settings.change_settings("Playback", "Repeat", "Times", newValue)
self.destroy()