|
|
Author: markmc
Update of /cvs/dist/rpms/gnome-panel/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv6730
Modified Files:
gnome-panel.spec
Added Files:
gnome-panel-2.10.1-no-huge-icons.patch
Log Message:
* Wed Apr 27 2005 Mark McLoughlin <markmc@xxxxxxxxxx> - 2.10.1-6
- Add patch to clamp the size of the icons on the panel at 48x48. Fixes
"moved the panel to the side, can't move it back" issue (rh #141743)
gnome-panel-2.10.1-no-huge-icons.patch:
button-widget.c | 2 ++
1 files changed, 2 insertions(+)
--- NEW FILE gnome-panel-2.10.1-no-huge-icons.patch ---
--- gnome-panel-2.10.1/gnome-panel/button-widget.c.no-huge-icons
2005-04-27 11:42:09.000000000 +0100
+++ gnome-panel-2.10.1/gnome-panel/button-widget.c 2005-04-27
11:43:47.000000000 +0100
@@ -506,6 +506,8 @@
else
size = allocation->width;
+ size = CLAMP (size, 0, 48);
+
if (button_widget->size != size) {
button_widget->size = size;
Index: gnome-panel.spec
===================================================================
RCS file: /cvs/dist/rpms/gnome-panel/devel/gnome-panel.spec,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- gnome-panel.spec 27 Apr 2005 09:44:43 -0000 1.64
+++ gnome-panel.spec 27 Apr 2005 10:58:26 -0000 1.65
@@ -23,7 +23,7 @@
Summary: GNOME panel
Name: gnome-panel
Version: 2.10.1
-Release: 6
+Release: 7
URL: http://www.gnome.org
Source0:
ftp://ftp.gnome.org/pub/GNOME/pre-gnome2/sources/gnome-panel/%{name}-%{version}.tar.bz2
Source1: redhat-panel-default-setup.entries
@@ -73,6 +73,7 @@
Patch0: gnome-panel-2.10.0-vendor.patch
Patch1: gnome-panel-2.10.0-remove-screenshot-menuitem.patch
Patch2: gnome-panel-2.10.1-speak-to-us-ye-old-wise-fish.patch
+Patch3: gnome-panel-2.10.1-no-huge-icons.patch
%description
@@ -97,6 +98,7 @@
%patch0 -p1 -b .vendor
%patch1 -p1 -b .remove-screenshot-menuitem
%patch2 -p1 -b .speak-to-us-ye-old-wise-fish
+%patch3 -p1 -b .no-huge-icons
cp -f %{SOURCE1} gnome-panel/panel-default-setup.entries
cp -f %{SOURCE3} gnome-panel/panel-compatibility.schemas
@@ -235,6 +237,10 @@
%{_datadir}/gtk-doc
%changelog
+* Wed Apr 27 2005 Mark McLoughlin <markmc@xxxxxxxxxx> - 2.10.1-6
+- Add patch to clamp the size of the icons on the panel at 48x48. Fixes
+ "moved the panel to the side, can't move it back" issue (rh #141743)
+
* Wed Apr 27 2005 Mark McLoughlin <markmc@xxxxxxxxxx> 2.10.1-6
- Reference the OpenOffice.org Impress .desktop file correctly
--
fedora-cvs-commits mailing list
fedora-cvs-commits@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/fedora-cvs-commits
|
|