Remove the polkit-gnome dependency. It's unlikely that admins
would require a password for the user to enroll themselves,
and we can't modify other users' fingerprints either.
theme-thumbnail-engine.c: In function 'message_from_capplet':
theme-thumbnail-engine.c:642: warning: 'pixels' may be used uninitialized in
this function
theme-thumbnail-engine.c:641: warning: 'rowstride' may be used uninitialized in
this function
These are actually false positives but no warnings is good (bug #590990).
The labels would get clipped if the monitor rectangles were too small,
thus making the labels unreadable. Now we ensure that the ink_rect of
the text fits, and we center the text based on its logical_rect.
Signed-off-by: Federico Mena Quintero <federico@novell.com>
We used to sort the outputs by their X coordinate, maybe to display a list of them in a
reasonable order. However, we don't display such a list at all, so it doesn't make
sense to sort the outputs. This also makes the capplet use the same ordering for outputs
as gnome-settings-daemon for GnomeRRLabeler's purposes, so that the colors for the outputs
match in both the capplet and g-s-d.
Signed-off-by: Federico Mena Quintero <federico@novell.com>
When a custom browser command was set we would clear that command
when the capplet was restarted. As a side effect of no longer
doing that, we now use the last used browser command as the
starting point instead of an empty commmand (bug #590316).
The theme thumbnail rendering code gets the rendering of folder icons somewhat
wrong, ie it frequently shows a gnome-fs-directory icon from gnome even if the
actual theme has a folder icon. Improve things by using modern GtkIconTheme
api in a better way.
Previously we were picking the output's highest-supported resolution, which is not
always the same as its preferred resolution. We also do this while actually turning
the output on, not as a side effect of rebuilding the resolution combo.
Signed-off-by: Federico Mena Quintero <federico@novell.com>
This patch is based on Ubuntu's touchpad configuration.
It adds a new tab to gnome-mouse-properties that allows to enable/disable the
touchpad, tapping and select between edge scrolling and two-finger scrolling.
It adds the following gconf keys:
/desktop/gnome/peripherals/touchpad/disable_while_typing (boolean)
/desktop/gnome/peripherals/touchpad/tap_to_click (boolean)
/desktop/gnome/peripherals/touchpad/horiz_scroll_enabled (boolean)
/desktop/gnome/peripherals/touchpad/scroll_method (integer)
[0,1,2 for disabled, edge and two-finger scrolling, respectively]
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
The custom cell renderers were required to draw the selection inidicator
around the entire item, not just the text. This has now been fixed in GTK+ as the
as the resolution of bug 382544.