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:
Owen W. Taylor 2010-09-16 15:25:23 -04:00
parent 6ea18136ac
commit 0cb8953232

View File

@ -213,7 +213,7 @@ ATIndicator.prototype = {
let active = on_get();
if (!active)
// 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());
});
return widget;