GtkNotebook: invert tab drawing order so region flags are set correctly.

This commit is contained in:
Carlos Garnacho 2010-08-23 18:00:06 +02:00
parent 78a98decae
commit 7e7347d1a0

View File

@ -4967,7 +4967,7 @@ gtk_notebook_paint (GtkWidget *widget,
gap_x = priv->cur_page->allocation.x - allocation.x - border_width;
gap_width = priv->cur_page->allocation.width;
step = is_rtl ? STEP_NEXT : STEP_PREV;
step = is_rtl ? STEP_PREV : STEP_NEXT;
break;
case GTK_POS_LEFT:
case GTK_POS_RIGHT: