1
1

1999-09-06 Miguel de Icaza <miguel@nuclecu.unam.mx>

* gtkdtree.c (gtk_dtree_size_allocate): Small change to improve
	the non-tree loading feature of gmc.
Этот коммит содержится в:
Miguel de Icaza 1999-09-06 20:56:25 +00:00
родитель b950b6bf48
Коммит 544f443121
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,8 @@
1999-09-06 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gtkdtree.c (gtk_dtree_size_allocate): Small change to improve
the non-tree loading feature of gmc.
1999-09-05 <jrb@redhat.com>
* mc.keys.in.in: changed image/x-xcf to be image/x-gimp. Also,

Просмотреть файл

@ -390,7 +390,7 @@ gtk_dtree_size_allocate (GtkWidget *widget, GtkAllocation *allocation)
char *request;
GTK_WIDGET_CLASS (parent_class)->size_allocate (widget, allocation);
if (allocation->width != 0 && allocation->height != 0)
if (allocation->width > 8 && allocation->height != 0)
dtree->visible = TRUE;
else
dtree->visible = FALSE;