>From 1a7c1961ad390f339e33d2ac0b9c37550d7556df Mon Sep 17 00:00:00 2001
From: Tom Most <[email protected]>
Date: Thu, 6 Dec 2012 00:18:32 -0800
Subject: [PATCH] Wrap text in the external images info bar
Previously the text would push the buttons over the right edge of the
window, given a narrow conversation view. This change makes Geary more
usable with narrow window sizes.
---
src/client/views/conversation-viewer.vala | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/client/views/conversation-viewer.vala
b/src/client/views/conversation-viewer.vala
index 9b0d3c0..d024b33 100644
--- a/src/client/views/conversation-viewer.vala
+++ b/src/client/views/conversation-viewer.vala
@@ -93,6 +93,7 @@ public class ConversationViewer : Object {
external_images_info_bar.get_content_area() as Gtk.Box;
if (external_images_info_bar_content_area != null) {
Gtk.Label label = new Gtk.Label(_("This message contains
images. Do you want to show them?"));
+ label.set_line_wrap(true);
external_images_info_bar_content_area.add(label);
label.show_all();
}
--
1.8.0.1
_______________________________________________
Geary mailing list
[email protected]
http://lists.yorba.org/cgi-bin/mailman/listinfo/geary