associate label more closely with VST path button. the plugin tab needs a complete...
[ardour.git] / libs / gtkmm2ext / utils.cc
index 0a808258804beaa05171ccd66207269b5a8f1434..6bf83d331636f1be5309db08c4f64f9eb51e0ebc 100644 (file)
@@ -818,6 +818,14 @@ Gtkmm2ext::left_aligned_label (string const & t)
        return l;
 }
 
+Gtk::Label *
+Gtkmm2ext::right_aligned_label (string const & t)
+{
+       Gtk::Label* l = new Gtk::Label (t);
+       l->set_alignment (1, 0.5);
+       return l;
+}
+
 static bool
 make_null_tooltip (int, int, bool, const Glib::RefPtr<Gtk::Tooltip>& t)
 {