diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2012-01-02 08:10:16 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2012-01-02 08:10:16 +0000 |
| commit | 93e419271061b1bcbf6869a7ac40c9e16bcc6cdc (patch) | |
| tree | c62112f9802e77684e5e1fa4be212c5995afc0bd /src/dialogs/xml-tree.cpp | |
| parent | Fix for bugs #910463, #910467 and #910479 (default widget size too small) by ... (diff) | |
| download | inkscape-93e419271061b1bcbf6869a7ac40c9e16bcc6cdc.tar.gz inkscape-93e419271061b1bcbf6869a7ac40c9e16bcc6cdc.zip | |
Fix for bugs #902054, #884368 and #909958 (minimum widget size) by John Smith.
(bzr r10819)
Diffstat (limited to 'src/dialogs/xml-tree.cpp')
| -rw-r--r-- | src/dialogs/xml-tree.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dialogs/xml-tree.cpp b/src/dialogs/xml-tree.cpp index 5e0766ded..98a3ee698 100644 --- a/src/dialogs/xml-tree.cpp +++ b/src/dialogs/xml-tree.cpp @@ -630,6 +630,7 @@ void sp_xml_tree_dialog() gtk_box_pack_start(GTK_BOX(toolbar), sw, TRUE, TRUE, 0); attr_value =(GtkTextView *) gtk_text_view_new(); + gtk_widget_set_size_request((GtkWidget *)attr_value, 0, 60); gtk_text_view_set_wrap_mode((GtkTextView *) attr_value, GTK_WRAP_CHAR); gtk_widget_set_tooltip_text( GTK_WIDGET(attr_value), // TRANSLATORS: "Attribute" is a noun here |
