Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sound.py
diff options
context:
space:
mode:
Diffstat (limited to 'sound.py')
-rw-r--r--sound.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound.py b/sound.py
index 25b254e..7c526b9 100644
--- a/sound.py
+++ b/sound.py
@@ -71,7 +71,7 @@ class Sound:
def thumb(self):
return self._thumb
- def change(self):
+ def select(self):
out = self
if self._type == theme.CUSTOM:
@@ -104,7 +104,7 @@ Sound.current = THEMES[0]
def play():
Sound.playing = True
- Sound.current.change()
+ Sound.current.select()
def stop():
Sound.playing = False