Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
gtk
Commits
ce821b23
Commit
ce821b23
authored
Oct 23, 2000
by
Owen Taylor
Browse files
*** empty log message ***
parent
3e7225f1
Changes
9
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
ce821b23
Mon Oct 23 12:07:57 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_set_style_internal): Fix problem
where font_desc for widget's context lagged widget's font_desc by
one step.
2000-10-22 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkgc-win32.c
...
...
ChangeLog.pre-2-0
View file @
ce821b23
Mon Oct 23 12:07:57 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_set_style_internal): Fix problem
where font_desc for widget's context lagged widget's font_desc by
one step.
2000-10-22 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkgc-win32.c
...
...
ChangeLog.pre-2-10
View file @
ce821b23
Mon Oct 23 12:07:57 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_set_style_internal): Fix problem
where font_desc for widget's context lagged widget's font_desc by
one step.
2000-10-22 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkgc-win32.c
...
...
ChangeLog.pre-2-2
View file @
ce821b23
Mon Oct 23 12:07:57 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_set_style_internal): Fix problem
where font_desc for widget's context lagged widget's font_desc by
one step.
2000-10-22 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkgc-win32.c
...
...
ChangeLog.pre-2-4
View file @
ce821b23
Mon Oct 23 12:07:57 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_set_style_internal): Fix problem
where font_desc for widget's context lagged widget's font_desc by
one step.
2000-10-22 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkgc-win32.c
...
...
ChangeLog.pre-2-6
View file @
ce821b23
Mon Oct 23 12:07:57 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_set_style_internal): Fix problem
where font_desc for widget's context lagged widget's font_desc by
one step.
2000-10-22 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkgc-win32.c
...
...
ChangeLog.pre-2-8
View file @
ce821b23
Mon Oct 23 12:07:57 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_set_style_internal): Fix problem
where font_desc for widget's context lagged widget's font_desc by
one step.
2000-10-22 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkgc-win32.c
...
...
docs/reference/gdk-pixbuf/tmpl/gdk-pixbuf-unused.sgml
View file @
ce821b23
<
!-- ##### SECTION ./tmpl/from-drawables.sgml:Title ##### -->
Drawables
to
Pixbufs
<
!-- ##### USER_FUNCTION GdkPixbufLastUnref ##### -->
<
para
>
A
function
of
this
type
can
be
used
to
override
the
default
...
...
@@ -19,6 +15,10 @@ Drawables to Pixbufs
@
pixbuf
:
The
pixbuf
that
is
losing
its
last
reference
.
@
data
:
User
closure
data
.
<
!-- ##### SECTION ./tmpl/from-drawables.sgml:Title ##### -->
Drawables
to
Pixbufs
<
!-- ##### ARG GnomeCanvasPixbuf:height_pixels ##### -->
<
para
>
...
...
@@ -415,18 +415,18 @@ XlibRGB
</
para
>
<
!-- ##### SECTION ./tmpl/from-drawables.sgml:See_Also ##### -->
<
para
>
gdk_image_get
().
</
para
>
<
!-- ##### SECTION ./tmpl/xlib-from-drawables.sgml:See_Also ##### -->
<
para
>
</
para
>
<
!-- ##### SECTION ./tmpl/from-drawables.sgml:See_Also ##### -->
<
para
>
gdk_image_get
().
</
para
>
<
!-- ##### STRUCT GdkPixbufAnimationClass ##### -->
<
para
>
...
...
@@ -515,12 +515,6 @@ Getting parts of a drawable's image data into a pixbuf.
</para>
<!-- ##### SECTION ./tmpl/gdk-pixbuf-io.sgml:Long_Description ##### -->
<para>
</para>
<!-- ##### SECTION ./tmpl/gnome-canvas-pixbuf.sgml:Long_Description ##### -->
<para>
This canvas item displays #GdkPixbuf images. It handles full
...
...
@@ -690,6 +684,12 @@ Getting parts of a drawable's image data into a pixbuf.
</refsect2>
<!-- ##### SECTION ./tmpl/gdk-pixbuf-io.sgml:Long_Description ##### -->
<para>
</para>
<!-- ##### SECTION ./tmpl/xlib-rendering.sgml:Title ##### -->
Xlib Rendering
...
...
gtk/gtkwidget.c
View file @
ce821b23
...
...
@@ -3302,7 +3302,7 @@ gtk_widget_set_style_internal (GtkWidget *widget,
{
PangoContext
*
context
=
gtk_widget_peek_pango_context
(
widget
);
if
(
context
)
pango_context_set_font_description
(
context
,
widget
->
style
->
font_desc
);
pango_context_set_font_description
(
context
,
style
->
font_desc
);
}
if
(
widget
->
style
!=
style
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment