diff options
author | Diego Escalante Urrelo <descalante@igalia.com> | 2011-07-31 08:05:04 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <descalante@igalia.com> | 2011-08-13 00:03:04 +0800 |
commit | 60bea9a1003343635d27fba83d3b089fb208efec (patch) | |
tree | c701a7858b12306ca35ea883cf34d3dd920ab7da /src/ephy-session.c | |
parent | e6945b6c75103866ac890219e93463ff4ce06183 (diff) | |
download | gsoc2013-epiphany-60bea9a1003343635d27fba83d3b089fb208efec.tar gsoc2013-epiphany-60bea9a1003343635d27fba83d3b089fb208efec.tar.gz gsoc2013-epiphany-60bea9a1003343635d27fba83d3b089fb208efec.tar.bz2 gsoc2013-epiphany-60bea9a1003343635d27fba83d3b089fb208efec.tar.lz gsoc2013-epiphany-60bea9a1003343635d27fba83d3b089fb208efec.tar.xz gsoc2013-epiphany-60bea9a1003343635d27fba83d3b089fb208efec.tar.zst gsoc2013-epiphany-60bea9a1003343635d27fba83d3b089fb208efec.zip |
Use line-wrap in GtkInfoBar labels
Otherwise we can end up with fixed width windows that exceed the display
size when long sentences are displayed.
Bug #649164
Diffstat (limited to 'src/ephy-session.c')
-rw-r--r-- | src/ephy-session.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ephy-session.c b/src/ephy-session.c index 0fea3304d..fcfdfae33 100644 --- a/src/ephy-session.c +++ b/src/ephy-session.c @@ -782,6 +782,7 @@ session_command_dispatch (EphySession *session) gtk_box_pack_start (GTK_BOX (button_box), action_button, FALSE, FALSE, 0); label = gtk_label_new (_("Do you want to recover the previous browser windows and tabs?")); + gtk_label_set_line_wrap (GTK_LABEL (label), TRUE); content_area = gtk_info_bar_get_content_area (GTK_INFO_BAR (info_bar)); gtk_container_add (GTK_CONTAINER (content_area), label); gtk_widget_show_all (info_bar); |