diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2014-03-15 08:16:21 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2014-03-15 08:16:21 +0000 |
| commit | 0f447656fa20753681f2f88713a08df3bfabcb7f (patch) | |
| tree | 20d7b12116da2c90184c38ba5f4a4fb3493deecc /src/ui/dialog/xml-tree.cpp | |
| parent | Saving. Fix for Bug #529843 (save a copy reverts to save as) by Tomasz Boczko... (diff) | |
| download | inkscape-0f447656fa20753681f2f88713a08df3bfabcb7f.tar.gz inkscape-0f447656fa20753681f2f88713a08df3bfabcb7f.zip | |
UI. Fix for Bug #1016889 (GTK3: status bar of XML Editor triggers resize of dialog window.
Fixed bugs:
- https://launchpad.net/bugs/1016889
(bzr r13155)
Diffstat (limited to 'src/ui/dialog/xml-tree.cpp')
| -rw-r--r-- | src/ui/dialog/xml-tree.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ui/dialog/xml-tree.cpp b/src/ui/dialog/xml-tree.cpp index 0e1e9f7a6..55d0aff09 100644 --- a/src/ui/dialog/xml-tree.cpp +++ b/src/ui/dialog/xml-tree.cpp @@ -100,6 +100,9 @@ XmlTree::XmlTree (void) : status.set_alignment( 0.0, 0.5); status.set_size_request(1, -1); status.set_markup(""); +#if WITH_GTKMM_3_0 + status.set_line_wrap(true); +#endif status_box.pack_start( status, TRUE, TRUE, 0); contents->pack_end(status_box, false, false, 2); |
