After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 148552 - Gnopernicus doesn't show the value on slider bar
Gnopernicus doesn't show the value on slider bar
Status: RESOLVED DUPLICATE of bug 142839
Product: gnopernicus
Classification: Deprecated
Component: srcore
unspecified
Other Linux
: Normal normal
: ---
Assigned To: ai
ai
Depends on:
Blocks:
 
 
Reported: 2004-07-27 08:44 UTC by Juan Ramon Jimenez
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: 2.5/2.6



Description Juan Ramon Jimenez 2004-07-27 08:44:54 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
Comment 1 Juan Ramon Jimenez 2004-07-27 08:53:05 UTC
  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.

Comment 2 Dana Ormenisan 2004-08-10 10:59:58 UTC
*** This bug has been marked as a duplicate of 142839 ***