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 589539 - GDM login theme change when using accessibility features
GDM login theme change when using accessibility features
Status: RESOLVED NOTGNOME
Product: gnome-settings-daemon
Classification: Core
Component: general
2.27.x
Other Linux
: Normal normal
: ---
Assigned To: gnome-settings-daemon-maint
gnome-settings-daemon-maint
Depends on:
Blocks:
 
 
Reported: 2009-07-23 20:38 UTC by Sebastien Bacher
Modified: 2011-09-07 13:19 UTC
See Also:
GNOME target: ---
GNOME version: 2.27/2.28



Description Sebastien Bacher 2009-07-23 20:38:21 UTC
The bug has been opened on https://bugs.launchpad.net/bugs/402017

"gdm: 2.27.4-0ubuntu2

When login screen first appears, the window/area containing the username to click on is 338px wide (measured with "screenruler" app). After enabling and disabling the large-text accessibility feature, the area increases to 455px wide.

After enabling and disabling the large-text accessibility feature the accessibility icon/button does not change back to the original size but stays at the larger size set when the large-text feature is on. This is causing part of the icon/button to be hidden below the bottom of the screen and is forcing the date/time text to align on the bottom of the white strip instead of the horizontal-centre as it is initially.

After enabling/disabling of the "enhance contrast in colours" feature, the colours don't revert back to brown but stay as blue.

Screenshots of before/after are attached.

http://launchpadlibrarian.net/29313029/before.png

http://launchpadlibrarian.net/29313029/before.png"
Comment 1 Baptiste Mille-Mathias 2009-07-24 09:01:22 UTC
http://launchpadlibrarian.net/29313036/after.png
Comment 2 Felix Kaser 2009-10-11 11:28:04 UTC
I can confirm the contrast issues on ubuntu karmic beta!

when enabling the higher contrast it seems that another theme is used, but when i switch it off i expect it to turn into the black theme as it was before.
Comment 3 William Jon McCann 2010-06-17 03:18:02 UTC

*** This bug has been marked as a duplicate of bug 617665 ***
Comment 4 Sebastien Bacher 2010-06-17 14:32:46 UTC
reopening, the theme changing issue is a different one from the other bug and not solved in using the git change
Comment 5 William Jon McCann 2010-06-17 17:07:45 UTC
So does the same thing happen in the user's session when this dialog is shown?  Enable a11y and "Accessibility features can be toggled with keyboard shortcuts".
Comment 6 Sebastien Bacher 2010-06-17 17:15:11 UTC
the session one seems to be working correctly, only the gdm session has the issue
Comment 7 Bastien Nocera 2011-09-07 13:19:05 UTC
That's what it did (in GNOME 2.x):
if (enabled) {
        gconf_client_set_string (client, KEY_GTK_THEME, HIGH_CONTRAST_THEME, NULL);
        gconf_client_set_string (client, KEY_ICON_THEME, HIGH_CONTRAST_THEME, NULL);
        /* there isn't a high contrast metacity theme afaik */
} else {
        gconf_client_unset (client, KEY_GTK_THEME, NULL);
        gconf_client_unset (client, KEY_ICON_THEME, NULL);
        gconf_client_unset (client, KEY_METACITY_THEME, NULL);
}

So the only reason why it wouldn't get reset properly is if you had the wrong theme as the default one in GConf (probably even just for gdm). In any case gnome-settings-daemon isn't doing anything wrong here.