fix order to have first the daemons for sound
This commit is contained in:
parent
48f735d287
commit
d7f14f8f59
|
@ -293,7 +293,7 @@ class PreferencesWindow:
|
||||||
# sound player
|
# sound player
|
||||||
player = gajim.config.get('soundplayer')
|
player = gajim.config.get('soundplayer')
|
||||||
if player == '': # only on first time Gajim starts
|
if player == '': # only on first time Gajim starts
|
||||||
commands = ('aplay', 'play', 'esdplay', 'artsplay')
|
commands = ('esdplay', 'artsplay', 'aplay', 'play')
|
||||||
for command in commands:
|
for command in commands:
|
||||||
if helpers.is_in_path(command):
|
if helpers.is_in_path(command):
|
||||||
self.xml.get_widget('soundplayer_entry').set_text(command)
|
self.xml.get_widget('soundplayer_entry').set_text(command)
|
||||||
|
|
Loading…
Reference in New Issue