Rearrange condition for pure midi plugins
[ardour.git] / gtk2_ardour / export_report.cc
index 52262c16eb24dae95fa9eb168e78870eb18423cd..942e1ddd4229c8986268217cc7765c78520a17ba 100644 (file)
@@ -47,7 +47,7 @@
 #include "logmeter.h"
 #include "ui_config.h"
 
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 using namespace Gtk;
 using namespace ARDOUR;
@@ -602,6 +602,9 @@ ExportReport::init (const AnalysisResults & ar, bool with_file)
                        VBox *lrb = manage (new VBox());
                        ToggleButton *log = manage (new ToggleButton (S_("Logscale|Lg")));
                        ToggleButton *rec = manage (new ToggleButton (S_("Rectified|Rf")));
+                       Gtkmm2ext::UI::instance()->set_tip (log, _("Logscale"));
+                       Gtkmm2ext::UI::instance()->set_tip (rec, _("Rectified"));
+
                        lrb->pack_start (*log, false, false, 5);
                        lrb->pack_end (*rec, false, false, 5);
                        log->signal_toggled ().connect (sigc::bind (sigc::mem_fun (*this, &ExportReport::on_logscale_toggled), log));