aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPiers Cornwell <piers@cvs.gnome.org>2004-02-05 18:47:26 +0800
committerPiers Cornwell <piers@src.gnome.org>2004-02-05 18:47:26 +0800
commit732acb827fb677539732c62ffe7039be64107c69 (patch)
tree059c4b3c68915f371af1c68d0fc08750bd61b0fc
parenta22233aef07b532dc4fd674c04b68cfedfe5fd4a (diff)
downloadgsoc2013-epiphany-732acb827fb677539732c62ffe7039be64107c69.tar
gsoc2013-epiphany-732acb827fb677539732c62ffe7039be64107c69.tar.gz
gsoc2013-epiphany-732acb827fb677539732c62ffe7039be64107c69.tar.bz2
gsoc2013-epiphany-732acb827fb677539732c62ffe7039be64107c69.tar.lz
gsoc2013-epiphany-732acb827fb677539732c62ffe7039be64107c69.tar.xz
gsoc2013-epiphany-732acb827fb677539732c62ffe7039be64107c69.tar.zst
gsoc2013-epiphany-732acb827fb677539732c62ffe7039be64107c69.zip
Make warning message selectable per hig.
2004-02-05 Piers Cornwell <piers@cvs.gnome.org> * src/ephy-session.c: (offer_to_resume): Make warning message selectable per hig.
-rw-r--r--ChangeLog6
-rw-r--r--src/ephy-session.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 2162959fa..6ed073a8f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-02-05 Piers Cornwell <piers@cvs.gnome.org>
+
+ * src/ephy-session.c: (offer_to_resume):
+
+ Make warning message selectable per hig.
+
2004-02-05 Christian Persch <chpe@cvs.gnome.org>
* src/bookmarks/ephy-bookmark-action.c: (connect_proxy):
diff --git a/src/ephy-session.c b/src/ephy-session.c
index a31d91302..b95754187 100644
--- a/src/ephy-session.c
+++ b/src/ephy-session.c
@@ -325,6 +325,7 @@ offer_to_resume (EphySession *session)
TRUE, TRUE, 0);
label = gtk_label_new (NULL);
+ gtk_label_set_selectable (GTK_LABEL (label), TRUE);
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
gtk_widget_show (label);
@@ -335,6 +336,7 @@ offer_to_resume (EphySession *session)
g_free (str);
label = gtk_label_new (_("You can recover the opened tabs and windows."));
+ gtk_label_set_selectable (GTK_LABEL (label), TRUE);
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
gtk_widget_show (label);
gtk_box_pack_start (GTK_BOX (vbox), label,