summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ui/view/edit-widget.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ui/view/edit-widget.cpp b/src/ui/view/edit-widget.cpp
index 5139f8ebf..b86a5d3f9 100644
--- a/src/ui/view/edit-widget.cpp
+++ b/src/ui/view/edit-widget.cpp
@@ -28,6 +28,7 @@
#endif
#include <gtk/gtkwindow.h>
+#include <gtk/gtkversion.h>
#include <gtkmm/radioaction.h>
#include <gtkmm/menubar.h>
#include <gtkmm/messagedialog.h>
@@ -1156,7 +1157,9 @@ EditWidget::initStatusbar()
_select_status.property_yalign() = 0.5;
_select_status.set_markup (_("<b>Welcome to Inkscape!</b> Use shape or freehand tools to create objects; use selector (arrow) to move or transform them."));
// include this again with Gtk+-2.6
- //_select_status.property_ellipsize() = Pango::ELLIPSIZE_END;
+#if GTK_MAJOR_VERSION == 2 && GTK_MINOR_VERSION >= 6
+ _select_status.property_ellipsize() = Pango::ELLIPSIZE_END;
+#endif
_select_status.set_size_request (1, -1);
_statusbar.pack_start (_select_status, true, true, 0);