Fix graphical glitches in processor list on some systems.
authorCarl Hetherington <carl@carlh.net>
Fri, 14 Jan 2011 23:48:34 +0000 (23:48 +0000)
committerCarl Hetherington <carl@carlh.net>
Fri, 14 Jan 2011 23:48:34 +0000 (23:48 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@8512 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/processor_box.cc

index a03b2ccb99b3f5eb44320ac2469d7c016e478bc4..7548e9f6b6b3574fe7c49faf8596e8a7d272b618 100644 (file)
@@ -105,6 +105,9 @@ ProcessorEntry::ProcessorEntry (boost::shared_ptr<Processor> p, Width w)
        _vbox.pack_start (_hbox);
        _frame.add (_vbox);
 
+       /* without this, the border is mis-drawn on some systems */
+       _vbox.set_border_width (1);
+
        _name.set_alignment (0, 0.5);
        _name.set_text (name ());
        _name.set_padding (2, 2);