fix order to have first the daemons for sound

This commit is contained in:
Nikos Kouremenos 2005-08-09 16:13:50 +00:00
parent 48f735d287
commit d7f14f8f59
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ class PreferencesWindow:
# sound player
player = gajim.config.get('soundplayer')
if player == '': # only on first time Gajim starts
commands = ('aplay', 'play', 'esdplay', 'artsplay')
commands = ('esdplay', 'artsplay', 'aplay', 'play')
for command in commands:
if helpers.is_in_path(command):
self.xml.get_widget('soundplayer_entry').set_text(command)