keyboard: Fix a warning
While we handle the case where ibus_bus_get_global_engine() returns NULL, this case actually generates an exception we have to catch to avoid some (harmless) console spam. https://bugzilla.gnome.org/show_bug.cgi?id=692995
This commit is contained in:
parent
2f496de98a
commit
65bf0d20e7
@ -115,9 +115,14 @@ const IBusManager = new Lang.Class({
|
|||||||
this._panelService.connect('update-property', Lang.bind(this, this._updateProperty));
|
this._panelService.connect('update-property', Lang.bind(this, this._updateProperty));
|
||||||
// If an engine is already active we need to get its properties
|
// If an engine is already active we need to get its properties
|
||||||
this._ibus.get_global_engine_async(-1, null, Lang.bind(this, function(i, result) {
|
this._ibus.get_global_engine_async(-1, null, Lang.bind(this, function(i, result) {
|
||||||
let engine = this._ibus.get_global_engine_async_finish(result);
|
let engine;
|
||||||
if (!engine)
|
try {
|
||||||
|
engine = this._ibus.get_global_engine_async_finish(result);
|
||||||
|
if (!engine)
|
||||||
|
return;
|
||||||
|
} catch(e) {
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
this._engineChanged(this._ibus, engine.get_name());
|
this._engineChanged(this._ibus, engine.get_name());
|
||||||
}));
|
}));
|
||||||
this._updateReadiness();
|
this._updateReadiness();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user