Piano: Use a fixed-width font in the UI to align things nicely.

This commit is contained in:
Andreas Kling 2019-07-13 23:14:00 +02:00
parent 9197cfc62f
commit 559a999852
Notes: sideshowbarker 2024-07-19 13:17:11 +09:00

View file

@ -9,6 +9,8 @@ PianoWidget::PianoWidget()
memset(keys, 0, sizeof(keys));
m_front_buffer = new Sample[2048];
m_back_buffer = new Sample[2048];
set_font(Font::default_fixed_width_font());
}
PianoWidget::~PianoWidget()