From f7940df6363ddd84db001cd2701d3520e908b2cd Mon Sep 17 00:00:00 2001 From: DrSlony Date: Sun, 3 Jun 2012 02:33:02 +0100 Subject: [PATCH] Fixes markup in Load/save/copy/paste Profile button tooltips, issue 1388 --- rtgui/profilepanel.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rtgui/profilepanel.cc b/rtgui/profilepanel.cc index dab76bc8c..8885ad742 100644 --- a/rtgui/profilepanel.cc +++ b/rtgui/profilepanel.cc @@ -81,10 +81,10 @@ ProfilePanel::ProfilePanel (bool readOnly) { old = profiles->get_active_text(); changeconn = profiles->signal_changed().connect( sigc::mem_fun(*this, &ProfilePanel::selection_changed) ); - load->set_tooltip_text (M("PROFILEPANEL_TOOLTIPLOAD")); - if (!readOnly) save->set_tooltip_text (M("PROFILEPANEL_TOOLTIPSAVE")); - if (!readOnly) copy->set_tooltip_text (M("PROFILEPANEL_TOOLTIPCOPY")); - paste->set_tooltip_text (M("PROFILEPANEL_TOOLTIPPASTE")); + load->set_tooltip_markup (M("PROFILEPANEL_TOOLTIPLOAD")); + if (!readOnly) save->set_tooltip_markup (M("PROFILEPANEL_TOOLTIPSAVE")); + if (!readOnly) copy->set_tooltip_markup (M("PROFILEPANEL_TOOLTIPCOPY")); + paste->set_tooltip_markup (M("PROFILEPANEL_TOOLTIPPASTE")); show_all_children (); }