Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2005-06-04 16:56:51 (GMT)
committer Marco Pesenti Gritti <marco@src.gnome.org>2005-06-04 16:56:51 (GMT)
commit825a3fe8219641123b0920b61971e9b6339cf9eb (patch)
tree3d09f4219606a57a73cc5742d874c77fcfd81802 /shell
parentdbe438c1e95c6d2901c282a0c0e204c94114fb75 (diff)
Set the column title. Show the dialog only once everything is setup.
2005-06-04 Marco Pesenti Gritti <mpg@redhat.com> * data/evince-properties.glade: * pdf/ev-poppler.cc: * shell/ev-properties.c: (setup_fonts_view): Set the column title. Show the dialog only once everything is setup. Getting font info can be very slow... will prolly need to make this threaded too.
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-properties.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/ev-properties.c b/shell/ev-properties.c
index a8c5a1e..9e0af66 100644
--- a/shell/ev-properties.c
+++ b/shell/ev-properties.c
@@ -113,6 +113,7 @@ setup_fonts_view (GladeXML *xml, GtkTreeModel *fonts)
renderer = gtk_cell_renderer_text_new ();
gtk_tree_view_column_pack_start (GTK_TREE_VIEW_COLUMN (column), renderer, FALSE);
+ gtk_tree_view_column_set_title (GTK_TREE_VIEW_COLUMN (column), _("Name"));
gtk_tree_view_column_set_attributes (GTK_TREE_VIEW_COLUMN (column), renderer,
"text", EV_DOCUMENT_FONTS_COLUMN_NAME,
NULL);