From 4bf94479b67e9e9436f72ff6470cb4b9f576df3d Mon Sep 17 00:00:00 2001 From: John Smith Date: Wed, 1 Aug 2012 16:44:34 +0900 Subject: Fix for 512247 : Show the direction in Object/Transform/Rotate (bzr r11578) --- src/ui/widget/labelled.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/ui/widget/labelled.cpp') diff --git a/src/ui/widget/labelled.cpp b/src/ui/widget/labelled.cpp index df800545a..2dda941f2 100644 --- a/src/ui/widget/labelled.cpp +++ b/src/ui/widget/labelled.cpp @@ -71,6 +71,12 @@ Labelled::setLabelText(const Glib::ustring &str) _label->set_text(str); } +void +Labelled::setTooltipText(const Glib::ustring &tooltip) +{ + _label->set_tooltip_text(tooltip); + _widget->set_tooltip_text(tooltip); +} } // namespace Widget } // namespace UI -- cgit v1.2.3 From 63a0b0f94e29ed91fb98b1b841cd698fd3e95cce Mon Sep 17 00:00:00 2001 From: John Smith Date: Tue, 11 Sep 2012 09:14:11 +0900 Subject: Fix for 167181 : Gnome-HIG-2.0 conformant Preferences dialog - accel keys (bzr r11662) --- src/ui/widget/labelled.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/ui/widget/labelled.cpp') diff --git a/src/ui/widget/labelled.cpp b/src/ui/widget/labelled.cpp index 2dda941f2..6e3652830 100644 --- a/src/ui/widget/labelled.cpp +++ b/src/ui/widget/labelled.cpp @@ -78,6 +78,11 @@ Labelled::setTooltipText(const Glib::ustring &tooltip) _widget->set_tooltip_text(tooltip); } +bool Labelled::on_mnemonic_activate ( bool group_cycling ) +{ + return _widget->mnemonic_activate ( group_cycling ); +} + } // namespace Widget } // namespace UI } // namespace Inkscape -- cgit v1.2.3