automountManager: Port to MetaSoundPlayer for emitting sounds
Move away from ShellGlobal API, which is too tightly coupled to libcanberra-gtk. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/327
This commit is contained in:
parent
4259676f6e
commit
9a35c9902a
@ -87,7 +87,8 @@ var AutomountManager = new Lang.Class({
|
|||||||
if (!this._session.SessionIsActive)
|
if (!this._session.SessionIsActive)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
global.play_theme_sound(0, 'device-added-media',
|
let player = global.display.get_sound_player();
|
||||||
|
player.play_from_theme('device-added-media',
|
||||||
_("External drive connected"),
|
_("External drive connected"),
|
||||||
null);
|
null);
|
||||||
},
|
},
|
||||||
@ -98,7 +99,8 @@ var AutomountManager = new Lang.Class({
|
|||||||
if (!this._session.SessionIsActive)
|
if (!this._session.SessionIsActive)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
global.play_theme_sound(0, 'device-removed-media',
|
let sound = global.display.get_sound();
|
||||||
|
sound.play_from_theme('device-removed-media',
|
||||||
_("External drive disconnected"),
|
_("External drive disconnected"),
|
||||||
null);
|
null);
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user