mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-25 05:01:09 +00:00
Fix use of ! in shell.
Fri Feb 1 19:57:59 2002 Owen Taylor <otaylor@redhat.com> * configure.in: Fix use of ! in shell. * gtk/gtktooltips.c (gtk_tooltips_class_init) gtkrc.default: Move the setting of default tooltips colors to gtktooltips.c from gtkrc.default. (Use default priority so themes will override.) (#58542)
This commit is contained in:
parent
5288e07931
commit
caf1d42427
@ -1,3 +1,12 @@
|
||||
Fri Feb 1 19:57:59 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* configure.in: Fix use of ! in shell.
|
||||
|
||||
* gtk/gtktooltips.c (gtk_tooltips_class_init) gtkrc.default:
|
||||
Move the setting of default tooltips colors to gtktooltips.c
|
||||
from gtkrc.default. (Use default priority so themes will
|
||||
override.) (#58542)
|
||||
|
||||
Fri Feb 1 17:48:51 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkrc.c (gtk_rc_get_style): Fix ordering of
|
||||
|
@ -1,3 +1,12 @@
|
||||
Fri Feb 1 19:57:59 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* configure.in: Fix use of ! in shell.
|
||||
|
||||
* gtk/gtktooltips.c (gtk_tooltips_class_init) gtkrc.default:
|
||||
Move the setting of default tooltips colors to gtktooltips.c
|
||||
from gtkrc.default. (Use default priority so themes will
|
||||
override.) (#58542)
|
||||
|
||||
Fri Feb 1 17:48:51 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkrc.c (gtk_rc_get_style): Fix ordering of
|
||||
|
@ -1,3 +1,12 @@
|
||||
Fri Feb 1 19:57:59 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* configure.in: Fix use of ! in shell.
|
||||
|
||||
* gtk/gtktooltips.c (gtk_tooltips_class_init) gtkrc.default:
|
||||
Move the setting of default tooltips colors to gtktooltips.c
|
||||
from gtkrc.default. (Use default priority so themes will
|
||||
override.) (#58542)
|
||||
|
||||
Fri Feb 1 17:48:51 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkrc.c (gtk_rc_get_style): Fix ordering of
|
||||
|
@ -1,3 +1,12 @@
|
||||
Fri Feb 1 19:57:59 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* configure.in: Fix use of ! in shell.
|
||||
|
||||
* gtk/gtktooltips.c (gtk_tooltips_class_init) gtkrc.default:
|
||||
Move the setting of default tooltips colors to gtktooltips.c
|
||||
from gtkrc.default. (Use default priority so themes will
|
||||
override.) (#58542)
|
||||
|
||||
Fri Feb 1 17:48:51 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkrc.c (gtk_rc_get_style): Fix ordering of
|
||||
|
@ -1,3 +1,12 @@
|
||||
Fri Feb 1 19:57:59 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* configure.in: Fix use of ! in shell.
|
||||
|
||||
* gtk/gtktooltips.c (gtk_tooltips_class_init) gtkrc.default:
|
||||
Move the setting of default tooltips colors to gtktooltips.c
|
||||
from gtkrc.default. (Use default priority so themes will
|
||||
override.) (#58542)
|
||||
|
||||
Fri Feb 1 17:48:51 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkrc.c (gtk_rc_get_style): Fix ordering of
|
||||
|
@ -1,3 +1,12 @@
|
||||
Fri Feb 1 19:57:59 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* configure.in: Fix use of ! in shell.
|
||||
|
||||
* gtk/gtktooltips.c (gtk_tooltips_class_init) gtkrc.default:
|
||||
Move the setting of default tooltips colors to gtktooltips.c
|
||||
from gtkrc.default. (Use default priority so themes will
|
||||
override.) (#58542)
|
||||
|
||||
Fri Feb 1 17:48:51 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkrc.c (gtk_rc_get_style): Fix ordering of
|
||||
|
@ -1,3 +1,12 @@
|
||||
Fri Feb 1 19:57:59 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* configure.in: Fix use of ! in shell.
|
||||
|
||||
* gtk/gtktooltips.c (gtk_tooltips_class_init) gtkrc.default:
|
||||
Move the setting of default tooltips colors to gtktooltips.c
|
||||
from gtkrc.default. (Use default priority so themes will
|
||||
override.) (#58542)
|
||||
|
||||
Fri Feb 1 17:48:51 2002 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtkrc.c (gtk_rc_get_style): Fix ordering of
|
||||
|
@ -1,9 +1,3 @@
|
||||
#
|
||||
# This theme is the default theme if no other theme is selected.
|
||||
#
|
||||
style "gtk-default-tooltips-style" {
|
||||
bg[NORMAL] = "#ffffc0"
|
||||
fg[NORMAL] = "#000000"
|
||||
}
|
||||
|
||||
widget "gtk-tooltips" style "gtk-default-tooltips-style"
|
||||
|
@ -99,6 +99,13 @@ gtk_tooltips_class_init (GtkTooltipsClass *class)
|
||||
parent_class = gtk_type_class (GTK_TYPE_OBJECT);
|
||||
|
||||
object_class->destroy = gtk_tooltips_destroy;
|
||||
|
||||
gtk_rc_parse_string ("style \"gtk-default-tooltips-style\" {\n"
|
||||
" bg[NORMAL] = \"#ffffc0\"\n"
|
||||
" fg[NORMAL] = \"#000000\"\n"
|
||||
"}\n"
|
||||
"\n"
|
||||
"widget \"gtk-tooltips*\" style : gtk \"gtk-default-tooltips-style\"\n");
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user