Dueling arrow positioning fixes...

Revert my fix, which conflicted with Benjamins fix for the same
issue.
This commit is contained in:
Matthias Clasen 2011-05-08 21:33:12 -04:00
parent 432e89685f
commit f3a66d0783

View File

@ -345,8 +345,8 @@ gtk_arrow_draw (GtkWidget *widget,
effective_arrow_type = GTK_ARROW_LEFT;
}
x = xpad + ((width - 2 * xpad - extent) * xalign);
y = ypad + ((height - 2 * ypad - extent) * yalign);
x = xpad + ((width - extent) * xalign);
y = ypad + ((height - extent) * yalign);
switch (effective_arrow_type)
{