diff options
author | Mart Raudsepp <leio@gentoo.org> | 2007-01-10 10:22:16 +0000 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2007-01-10 10:22:16 +0000 |
commit | 5b1321428d7acefc2adddd664791dfcde499af74 (patch) | |
tree | e96aff11f0ae05bc8c619f4d659b82a848eb90f6 /x11-themes/gnome-themes-extras/files | |
parent | Version bump, bug #148776. Dropped old versions. (diff) | |
download | gentoo-2-5b1321428d7acefc2adddd664791dfcde499af74.tar.gz gentoo-2-5b1321428d7acefc2adddd664791dfcde499af74.tar.bz2 gentoo-2-5b1321428d7acefc2adddd664791dfcde499af74.zip |
Version bump. Add long description. Prune old version
(Portage version: 2.1.2_rc4-r7)
(Signed Manifest commit)
Diffstat (limited to 'x11-themes/gnome-themes-extras/files')
-rw-r--r-- | x11-themes/gnome-themes-extras/files/digest-gnome-themes-extras-0.7 | 1 | ||||
-rw-r--r-- | x11-themes/gnome-themes-extras/files/gnome-themes-extras-0.5-industrial_uncorrupt.patch | 45 |
2 files changed, 0 insertions, 46 deletions
diff --git a/x11-themes/gnome-themes-extras/files/digest-gnome-themes-extras-0.7 b/x11-themes/gnome-themes-extras/files/digest-gnome-themes-extras-0.7 deleted file mode 100644 index df820ed2e6dc..000000000000 --- a/x11-themes/gnome-themes-extras/files/digest-gnome-themes-extras-0.7 +++ /dev/null @@ -1 +0,0 @@ -MD5 5069fedb0d8404c89d98fe8de6825bca gnome-themes-extras-0.7.tar.bz2 3600402 diff --git a/x11-themes/gnome-themes-extras/files/gnome-themes-extras-0.5-industrial_uncorrupt.patch b/x11-themes/gnome-themes-extras/files/gnome-themes-extras-0.5-industrial_uncorrupt.patch deleted file mode 100644 index 66e4cc988af2..000000000000 --- a/x11-themes/gnome-themes-extras/files/gnome-themes-extras-0.5-industrial_uncorrupt.patch +++ /dev/null @@ -1,45 +0,0 @@ ---- industrial_style.c.orig 2003-12-07 22:13:42.000000000 +0100 -+++ industrial_style.c 2003-12-07 22:14:13.000000000 +0100 -@@ -1283,9 +1283,6 @@ - gint height, - gboolean fill) - { -- if (shadow_type == GTK_SHADOW_NONE) -- return; -- - g_return_if_fail (style != NULL); - g_return_if_fail (window != NULL); - -@@ -1430,7 +1427,7 @@ - } - - /* Only draw shadow if button is large enough to fit it. */ -- if (width > 18 && height > 18) { -+ if (width > 18 && height > 18 && shadow_type != GTK_SHADOW_NONE) { - - /* Offset shadow if depressed. */ - if (state_type == GTK_STATE_ACTIVE) { -@@ -1589,7 +1586,7 @@ - - #if 1 - /* Remove this to add the shadow back for depressed buttons. */ -- if (GTK_WIDGET_STATE (widget) == GTK_STATE_ACTIVE) -+ if (GTK_WIDGET_STATE (widget) == GTK_STATE_ACTIVE || shadow_type == GTK_SHADOW_NONE) - return; - #endif - -@@ -1793,8 +1790,12 @@ - GdkColor *fg_color = get_color (style, &style->bg[state_type], &style->fg[state_type], STANDARD_BORDER_SHADE); - GdkGC *corner_gc = get_gc (style, &style->bg[state_type], fg_color, SHADE_HALF); - -- draw_rounded_rect_one_pixel (window, bg_gc, fg_gc, corner_gc, -- area, x, y, width, height); -+ if(shadow_type == GTK_SHADOW_NONE) { -+ if(bg_gc) -+ gdk_draw_rectangle (window, bg_gc, TRUE, x, y, width, height); -+ } else { -+ draw_rounded_rect_one_pixel (window, bg_gc, fg_gc, corner_gc, area, x, y, width, height); -+ } - } - } - |