forked from AuroraMiddleware/gtk
Subtract off twice the border width from the width/height, not 1x the
Thu Jun 5 19:24:33 2003 Owen Taylor <otaylor@redhat.com> * gtk/gtktoolbar.c (gtk_toolbar_expose): Subtract off twice the border width from the width/height, not 1x the border width. (#106336, Rodney Dawes)
This commit is contained in:
parent
9cb6de1fa5
commit
27c08ab4b0
@ -1,3 +1,9 @@
|
||||
Thu Jun 5 19:24:33 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtktoolbar.c (gtk_toolbar_expose): Subtract off
|
||||
twice the border width from the width/height, not
|
||||
1x the border width. (#106336, Rodney Dawes)
|
||||
|
||||
Thu Jun 5 15:33:38 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_next_line):
|
||||
|
@ -1,3 +1,9 @@
|
||||
Thu Jun 5 19:24:33 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtktoolbar.c (gtk_toolbar_expose): Subtract off
|
||||
twice the border width from the width/height, not
|
||||
1x the border width. (#106336, Rodney Dawes)
|
||||
|
||||
Thu Jun 5 15:33:38 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_next_line):
|
||||
|
@ -1,3 +1,9 @@
|
||||
Thu Jun 5 19:24:33 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtktoolbar.c (gtk_toolbar_expose): Subtract off
|
||||
twice the border width from the width/height, not
|
||||
1x the border width. (#106336, Rodney Dawes)
|
||||
|
||||
Thu Jun 5 15:33:38 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_next_line):
|
||||
|
@ -1,3 +1,9 @@
|
||||
Thu Jun 5 19:24:33 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtktoolbar.c (gtk_toolbar_expose): Subtract off
|
||||
twice the border width from the width/height, not
|
||||
1x the border width. (#106336, Rodney Dawes)
|
||||
|
||||
Thu Jun 5 15:33:38 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_next_line):
|
||||
|
@ -1,3 +1,9 @@
|
||||
Thu Jun 5 19:24:33 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtktoolbar.c (gtk_toolbar_expose): Subtract off
|
||||
twice the border width from the width/height, not
|
||||
1x the border width. (#106336, Rodney Dawes)
|
||||
|
||||
Thu Jun 5 15:33:38 2003 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gtk/gtktextlayout.c (gtk_text_layout_move_iter_to_next_line):
|
||||
|
@ -561,8 +561,8 @@ gtk_toolbar_expose (GtkWidget *widget,
|
||||
&event->area, widget, "toolbar",
|
||||
widget->allocation.x + border_width,
|
||||
widget->allocation.y + border_width,
|
||||
widget->allocation.width - border_width,
|
||||
widget->allocation.height - border_width);
|
||||
widget->allocation.width - 2 * border_width,
|
||||
widget->allocation.height - 2 * border_width);
|
||||
|
||||
for (children = toolbar->children; children; children = children->next)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user