GNOME Bugzilla – Bug 148552
Gnopernicus doesn't show the value on slider bar
Last modified: 2004-12-22 21:47:04 UTC
With Gnopernicus running: Open a window with a slider bar (for example Mixer settings) When you move the focus to the slider bar, Gnopernicus doesn't speak the slider current value. Only say the role and the name of the slider. Gnopernicus should speak the current value in the slider as well as the role and the name It only happens in version 0.9.6 of Gnopernicus
The solution can be in the presentation file (default.xml.in) Replacing this lines: <role name="slider"> <event name="generic"> <attribute type="string" voice="name">name</attribute> <attribute type="string" voice="role">role</attribute> <_literal voice="system">current value</_literal> --------> <attribute type="string" voice="value">text:line</attribute> </event> <event name="object:property-change:accessible-value"> --------> <attribute type="string" voice="value">text:line</attribute> </event> with this ones, <role name="slider"> <event name="generic"> <attribute type="string" voice="name">name</attribute> <attribute type="string" voice="role">role</attribute> <_literal voice="system">current value</_literal> ---------><attribute type="string" voice="value">value:crt</attribute> </event> <event name="object:property-change:accessible-value"> -------> <attribute type="string" voice="value">value:crt</attribute> </event> (you must to replace in two places ) and the problem seems to be solve.
*** This bug has been marked as a duplicate of 142839 ***