accessibility.js: Fix use of non-existent gconf_client_get_value()
gconf_client_get_value() doesn't exist; apparently gconf_client_get_float() was meant instead.
This commit is contained in:
parent
6ea18136ac
commit
0cb8953232
@ -213,7 +213,7 @@ ATIndicator.prototype = {
|
|||||||
let active = on_get();
|
let active = on_get();
|
||||||
if (!active)
|
if (!active)
|
||||||
// setting was modified manually, update it
|
// setting was modified manually, update it
|
||||||
first_value = client.get_value(KEY_FONT_DPI);
|
first_value = client.get_float(KEY_FONT_DPI);
|
||||||
widget.setToggleState(on_get());
|
widget.setToggleState(on_get());
|
||||||
});
|
});
|
||||||
return widget;
|
return widget;
|
||||||
|
Loading…
Reference in New Issue
Block a user