Fix size requisition for wide vertical separators. (#438113, Benjamin
2007-05-14 Matthias Clasen <mclasen@redhat.com> * gtk/gtkvseparator.c (gtk_vseparator_size_request): Fix size requisition for wide vertical separators. (#438113, Benjamin Berg) svn path=/trunk/; revision=17837
This commit is contained in:

committed by
Matthias Clasen

parent
12a3162dd5
commit
a07dd18ff9
@ -1,3 +1,9 @@
|
|||||||
|
2007-05-14 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
* gtk/gtkvseparator.c (gtk_vseparator_size_request): Fix
|
||||||
|
size requisition for wide vertical separators. (#438113,
|
||||||
|
Benjamin Berg)
|
||||||
|
|
||||||
2007-05-13 Emmanuele Bassi <ebassi@gnome.org>
|
2007-05-13 Emmanuele Bassi <ebassi@gnome.org>
|
||||||
|
|
||||||
* gtk/gtksearchenginesimple.c: Include <ftw.h> and use nftw() and
|
* gtk/gtksearchenginesimple.c: Include <ftw.h> and use nftw() and
|
||||||
|
@ -75,9 +75,9 @@ gtk_vseparator_size_request (GtkWidget *widget,
|
|||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
if (wide_separators)
|
if (wide_separators)
|
||||||
requisition->height = separator_width;
|
requisition->width = separator_width;
|
||||||
else
|
else
|
||||||
requisition->height = widget->style->xthickness;
|
requisition->width = widget->style->xthickness;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gint
|
static gint
|
||||||
|
Reference in New Issue
Block a user