use ArdourMono font for metric patterns
This commit is contained in:
parent
00803110f8
commit
60b429806f
@ -244,9 +244,7 @@ meter_render_metrics (Gtk::Widget& w, vector<DataType> types)
|
|||||||
Pango::AttrFontDesc* font_attr;
|
Pango::AttrFontDesc* font_attr;
|
||||||
Pango::FontDescription font;
|
Pango::FontDescription font;
|
||||||
|
|
||||||
font = Pango::FontDescription (""); // use defaults
|
font = Pango::FontDescription ("ArdourMono");
|
||||||
//font = get_font_for_style("gain-fader");
|
|
||||||
//font = w.get_style()->get_font();
|
|
||||||
|
|
||||||
font.set_weight (Pango::WEIGHT_NORMAL);
|
font.set_weight (Pango::WEIGHT_NORMAL);
|
||||||
font.set_size (9.0 * PANGO_SCALE);
|
font.set_size (9.0 * PANGO_SCALE);
|
||||||
@ -256,12 +254,12 @@ meter_render_metrics (Gtk::Widget& w, vector<DataType> types)
|
|||||||
|
|
||||||
font.set_weight (Pango::WEIGHT_ULTRALIGHT);
|
font.set_weight (Pango::WEIGHT_ULTRALIGHT);
|
||||||
font.set_stretch (Pango::STRETCH_ULTRA_CONDENSED);
|
font.set_stretch (Pango::STRETCH_ULTRA_CONDENSED);
|
||||||
font.set_size (7.5 * PANGO_SCALE);
|
font.set_size (8.0 * PANGO_SCALE);
|
||||||
font_attr = new Pango::AttrFontDesc (Pango::Attribute::create_attr_font_desc (font));
|
font_attr = new Pango::AttrFontDesc (Pango::Attribute::create_attr_font_desc (font));
|
||||||
midi_font_attributes.change (*font_attr);
|
midi_font_attributes.change (*font_attr);
|
||||||
delete font_attr;
|
delete font_attr;
|
||||||
|
|
||||||
font.set_size (7.0 * PANGO_SCALE);
|
font.set_size (6.0 * PANGO_SCALE);
|
||||||
font_attr = new Pango::AttrFontDesc (Pango::Attribute::create_attr_font_desc (font));
|
font_attr = new Pango::AttrFontDesc (Pango::Attribute::create_attr_font_desc (font));
|
||||||
unit_font_attributes.change (*font_attr);
|
unit_font_attributes.change (*font_attr);
|
||||||
delete font_attr;
|
delete font_attr;
|
||||||
|
Loading…
Reference in New Issue
Block a user