forked from AuroraMiddleware/gtk
Merge commit 'origin/master'
This commit is contained in:
commit
bcf754ea1d
@ -4981,12 +4981,15 @@ gtk_notebook_calculate_shown_tabs (GtkNotebook *notebook,
|
||||
remaining_space, STEP_NEXT);
|
||||
}
|
||||
|
||||
if (*remaining_space <= 0)
|
||||
if (tab_space <= 0 || *remaining_space < 0)
|
||||
{
|
||||
/* show 1 tab */
|
||||
notebook->first_tab = notebook->focus_tab;
|
||||
*last_child = gtk_notebook_search_page (notebook, notebook->focus_tab,
|
||||
STEP_NEXT, TRUE);
|
||||
page = notebook->first_tab->data;
|
||||
*remaining_space = tab_space - page->requisition.width;
|
||||
*n = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -5073,7 +5076,6 @@ gtk_notebook_calculate_shown_tabs (GtkNotebook *notebook,
|
||||
TRUE);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (*remaining_space < 0)
|
||||
{
|
||||
@ -5089,6 +5091,7 @@ gtk_notebook_calculate_shown_tabs (GtkNotebook *notebook,
|
||||
}
|
||||
else
|
||||
*remaining_space = 0;
|
||||
}
|
||||
|
||||
/* unmap all non-visible tabs */
|
||||
for (children = gtk_notebook_search_page (notebook, NULL,
|
||||
|
@ -2115,8 +2115,8 @@ update_progress (PrintPagesData *data)
|
||||
{
|
||||
if (priv->status == GTK_PRINT_STATUS_PREPARING)
|
||||
{
|
||||
if (priv->nr_of_pages > 0)
|
||||
text = g_strdup_printf (_("Preparing %d"), priv->nr_of_pages);
|
||||
if (priv->nr_of_pages_to_print > 0)
|
||||
text = g_strdup_printf (_("Preparing %d"), priv->nr_of_pages_to_print);
|
||||
else
|
||||
text = g_strdup (_("Preparing"));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user