Bug 635303 - Can't attach a dialog at the bottom of a minimized toolbox

Ensure a minimum size of the drop area and make sure it stays visible
at the bottom of a minimized toolbox. This wastes a few pixels at the
bottom of a toolbox that contains no dockables.
This commit is contained in:
Michael Natterer 2012-10-07 19:49:33 +02:00
parent 09a2105aae
commit 74bc070147
1 changed files with 5 additions and 7 deletions

View File

@ -51,11 +51,11 @@
* order to be inserted and get space on their own (rather than
* inserted among others and sharing space)
*/
#define DROP_AREA_SIZE 5
#define DROP_AREA_SIZE 6
#define INSERT_INDEX_UNUSED G_MININT
#define INSTRUCTIONS_TEXT_PADDING 4
#define INSTRUCTIONS_TEXT_PADDING 6
#define INSTRUCTIONS_TEXT _("You can drop dockable dialogs here")
@ -147,7 +147,7 @@ gimp_paned_box_init (GimpPanedBox *paned_box)
gtk_label_set_line_wrap (GTK_LABEL (paned_box->p->instructions), TRUE);
gtk_label_set_justify (GTK_LABEL (paned_box->p->instructions),
GTK_JUSTIFY_CENTER);
gtk_widget_set_size_request (paned_box->p->instructions, 16, 0);
gtk_widget_set_size_request (paned_box->p->instructions, 16, DROP_AREA_SIZE);
gimp_label_set_attributes (GTK_LABEL (paned_box->p->instructions),
PANGO_ATTR_STYLE, PANGO_STYLE_ITALIC,
-1);
@ -259,10 +259,8 @@ gimp_paned_box_get_drop_area_size (GimpPanedBox *paned_box)
else if (orientation == GTK_ORIENTATION_VERTICAL)
drop_area_size = allocation.height;
}
else
{
drop_area_size = DROP_AREA_SIZE;
}
drop_area_size = MAX (drop_area_size, DROP_AREA_SIZE);
return drop_area_size;
}