From 85690c4ba7b47cfca66366c12c77bb9398345668 Mon Sep 17 00:00:00 2001 From: compudj Date: Thu, 19 Aug 2004 05:09:01 +0000 Subject: [PATCH] ypad taken into account git-svn-id: http://ltt.polymtl.ca/svn@815 04897980-b3bd-0310-b5e0-8ef037075253 --- ltt/branches/poly/lttv/modules/gui/controlflow/processlist.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ltt/branches/poly/lttv/modules/gui/controlflow/processlist.c b/ltt/branches/poly/lttv/modules/gui/controlflow/processlist.c index ba0ca45a..e04f208b 100644 --- a/ltt/branches/poly/lttv/modules/gui/controlflow/processlist.c +++ b/ltt/branches/poly/lttv/modules/gui/controlflow/processlist.c @@ -378,6 +378,11 @@ ProcessList *processlist_construct(void) NULL, &process_list->cell_height); + guint ypad; + g_object_get(G_OBJECT(renderer), "ypad", &ypad, NULL); + + process_list->cell_height += ypad; + column = gtk_tree_view_column_new_with_attributes ( "Process", renderer, "text", -- 2.34.1