aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook/gui/widgets')
-rw-r--r--addressbook/gui/widgets/e-addressbook-view.etspec2
-rw-r--r--addressbook/gui/widgets/eab-gui-util.c6
2 files changed, 5 insertions, 3 deletions
diff --git a/addressbook/gui/widgets/e-addressbook-view.etspec b/addressbook/gui/widgets/e-addressbook-view.etspec
index 84f9ad44b8..8934900163 100644
--- a/addressbook/gui/widgets/e-addressbook-view.etspec
+++ b/addressbook/gui/widgets/e-addressbook-view.etspec
@@ -1,4 +1,4 @@
-<ETableSpecification draw-grid="true">
+<ETableSpecification draw-grid="true" cursor-mode="line">
<ETableColumn model_col= "2" _title="File As" expansion="1.0" minimum_width="75" resizable="true" cell="string" compare="string"/>
<ETableColumn model_col= "3" _title="Full Name" expansion="1.0" minimum_width="75" resizable="true" cell="string" compare="string"/>
<ETableColumn model_col= "4" _title="Given Name" expansion="1.0" minimum_width="75" resizable="true" cell="string" compare="string"/>
diff --git a/addressbook/gui/widgets/eab-gui-util.c b/addressbook/gui/widgets/eab-gui-util.c
index eed07a3621..5415aa1700 100644
--- a/addressbook/gui/widgets/eab-gui-util.c
+++ b/addressbook/gui/widgets/eab-gui-util.c
@@ -970,13 +970,15 @@ eab_create_image_chooser_widget(gchar *name,
{
char *filename;
GtkWidget *w = NULL;
+
+ w = e_image_chooser_new ();
+ gtk_widget_show_all (w);
+
if (string1) {
filename = e_icon_factory_get_icon_filename (string1, 48);
- w = e_image_chooser_new ();
e_image_chooser_set_from_file (E_IMAGE_CHOOSER (w), filename);
- gtk_widget_show_all (w);
g_free (filename);
}