diff options
author | 2004-03-20 06:52:29 +0000 | |
---|---|---|
committer | 2004-03-20 06:52:29 +0000 | |
commit | a751727cb8948f9f530eb8aff1d54071e0560f56 (patch) | |
tree | 10ed720e09938208df0bfa44c222aef9e4383c2e /x11-themes/mandrake-artwork/files | |
parent | digest fix (Manifest recommit) (diff) | |
download | gentoo-2-a751727cb8948f9f530eb8aff1d54071e0560f56.tar.gz gentoo-2-a751727cb8948f9f530eb8aff1d54071e0560f56.tar.bz2 gentoo-2-a751727cb8948f9f530eb8aff1d54071e0560f56.zip |
Bump to 1.0, fix for GTK+ 2.4
Diffstat (limited to 'x11-themes/mandrake-artwork/files')
-rw-r--r-- | x11-themes/mandrake-artwork/files/digest-mandrake-artwork-1.0.0 | 1 | ||||
-rw-r--r-- | x11-themes/mandrake-artwork/files/galaxy-gtk24.patch | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/x11-themes/mandrake-artwork/files/digest-mandrake-artwork-1.0.0 b/x11-themes/mandrake-artwork/files/digest-mandrake-artwork-1.0.0 new file mode 100644 index 000000000000..1c9f8f7a84df --- /dev/null +++ b/x11-themes/mandrake-artwork/files/digest-mandrake-artwork-1.0.0 @@ -0,0 +1 @@ +MD5 f6beb5bc2cc2c45e010cff79c775f835 galaxy-1.0.0-3mdk.src.rpm 348309 diff --git a/x11-themes/mandrake-artwork/files/galaxy-gtk24.patch b/x11-themes/mandrake-artwork/files/galaxy-gtk24.patch new file mode 100644 index 000000000000..15ab9cc46ca2 --- /dev/null +++ b/x11-themes/mandrake-artwork/files/galaxy-gtk24.patch @@ -0,0 +1,38 @@ +--- gtk-2.0/galaxy_theme_draw.c 2004-01-23 10:47:07.000000000 -0500 ++++ gtk-2.0/galaxy_theme_draw.c.orig 2004-03-20 01:44:28.430956120 -0500 +@@ -740,7 +740,7 @@ + } + + if (is_combo_button = (DETAIL("button") && +- GTK_IS_COMBO(gtk_widget_get_parent(widget)))) { ++ GTK_IS_COMBO_BOX(gtk_widget_get_parent(widget)))) { + xthick = ythick = 1; + } + +@@ -1048,7 +1048,7 @@ + } + + if (shadow_type == GTK_SHADOW_IN && +- widget && (GTK_IS_SPIN_BUTTON (widget) || (GTK_IS_COMBO (gtk_widget_get_parent (widget)))) && ++ widget && (GTK_IS_SPIN_BUTTON (widget) || (GTK_IS_COMBO_BOX (gtk_widget_get_parent (widget)))) && + DETAIL ("entry")) + { + GdkGC * gc1 = style->base_gc[GTK_WIDGET_STATE(widget)]; +@@ -1323,7 +1323,7 @@ + gdk_gc_set_clip_rectangle (galaxy_style->gray_gc[2], area); + } + +- if (("button") && GTK_IS_COMBO(gtk_widget_get_parent(widget))) { ++ if (("button") && GTK_IS_COMBO_BOX(gtk_widget_get_parent(widget))) { + xthick = ythick = 1; + } + +@@ -2675,7 +2675,7 @@ + y += 1; + } + +- if (GTK_IS_COMBO(gtk_widget_get_parent(gtk_widget_get_parent(widget)))) { ++ if (GTK_IS_COMBO_BOX(gtk_widget_get_parent(gtk_widget_get_parent(widget)))) { + /* same design as KDE arrow, add a line */ + if (area) { + gdk_gc_set_clip_rectangle (style->fg_gc[state], area); |