1
0
OBS User unknown 2008-09-26 13:22:41 +00:00 committed by Git OBS Bridge
parent 3254cbfebb
commit dc2a463ab6
3 changed files with 28 additions and 2 deletions

View File

@ -0,0 +1,12 @@
Index: gnome-settings-daemon-2.23.92/plugins/xsettings/gsd-xsettings-manager.c
===================================================================
--- gnome-settings-daemon-2.23.92.orig/plugins/xsettings/gsd-xsettings-manager.c
+++ gnome-settings-daemon-2.23.92/plugins/xsettings/gsd-xsettings-manager.c
@@ -280,6 +280,7 @@ get_dpi_from_gconf_or_x_server (GConfCli
gconf_value_free (value);
} else {
dpi = get_dpi_from_x_server ();
+ dpi = DPI_FALLBACK;
}
return dpi;

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Fri Sep 26 14:46:58 CEST 2008 - vuntz@novell.com
- Add gnome-settings-daemon-bnc427745-force-dpi.patch to force the
DPI to 96. This fixes huge fonts on login on recent laptops.
Fixes bnc#427745.
-------------------------------------------------------------------
Thu Sep 18 13:34:48 CEST 2008 - rodrigo@novell.com

View File

@ -24,15 +24,17 @@ BuildRequires: fdupes gnome-common gnome-desktop-devel gnome-patch-translation
License: GPL v2 or later
Group: System/GUI/GNOME
Version: 2.23.92
Release: 1
Release: 2
Summary: Settings daemon for the GNOME desktop
Source: %{_name}-%{version}.tar.bz2
# PATCH-FEATURE-OPENSUSE gnome-settings-daemon-system-proxy-configuration.diff
Patch2: gnome-settings-daemon-system-proxy-configuration.diff
# PATCH-FIX-UPSTREAM gnome-settings-daemon-bnc369263-broken-xkb-layout.patch bnc369263 bfo16105 vuntz@novell.com -- This is a hack to fix a major bug.
Patch4: gnome-settings-daemon-bnc369263-broken-xkb-layout.patch
# PATCH-FEATURE-UPSTREAM gnome-settings-daemon-randr-fnf7.diff fate4147 federico@novell.com - Support Fn-F7 to switch between display modes on laptops
# PATCH-FEATURE-UPSTREAM gnome-settings-daemon-randr-fnf7.diff fate4147 federico@novell.com -- Support Fn-F7 to switch between display modes on laptops
Patch5: gnome-settings-daemon-randr-fnf7.diff
# PATCH-FIX-UPSTREAM gnome-settings-daemon-bnc427745-force-dpi.patch bnc427745 bgo553652 vuntz@novell.com -- Force the DPI to 96 right now to avoid big fonts.
Patch6: gnome-settings-daemon-bnc427745-force-dpi.patch
Url: http://www.gnome.org
Requires: %{name}-lang = %{version}
Obsoletes: resapplet
@ -90,6 +92,7 @@ Authors:
%patch2 -p1
%patch4 -p1
%patch5 -p1
%patch6 -p1
#gnome-patch-translation-update
%build
@ -143,6 +146,10 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/pkgconfig/*.pc
%changelog
* Fri Sep 26 2008 vuntz@novell.com
- Add gnome-settings-daemon-bnc427745-force-dpi.patch to force the
DPI to 96. This fixes huge fonts on login on recent laptops.
Fixes bnc#427745.
* Thu Sep 18 2008 rodrigo@novell.com
- Update to 2.23.92:
+ Try harder to use the keyboard layout passed by GDM (bgo#551062)