mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-09-06 07:07:48 -04:00
Normalize central spectrum font
This commit is contained in:
parent
ec8e4d51df
commit
d787d72492
@ -625,6 +625,13 @@ MainWindow::DeviceUISet::DeviceUISet(QTimer& timer)
|
|||||||
m_spectrumGUI->setBuddies(m_spectrumVis->getInputMessageQueue(), m_spectrumVis, m_spectrum);
|
m_spectrumGUI->setBuddies(m_spectrumVis->getInputMessageQueue(), m_spectrumVis, m_spectrum);
|
||||||
m_channelWindow = new ChannelWindow;
|
m_channelWindow = new ChannelWindow;
|
||||||
m_sampleSource = new QComboBox;
|
m_sampleSource = new QComboBox;
|
||||||
|
|
||||||
|
// m_spectrum needs to have its font to be set since it cannot be inherited from the main window
|
||||||
|
QFont font;
|
||||||
|
font.setFamily(QStringLiteral("Sans Serif"));
|
||||||
|
font.setPointSize(9);
|
||||||
|
m_spectrum->setFont(font);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
MainWindow::DeviceUISet::~DeviceUISet()
|
MainWindow::DeviceUISet::~DeviceUISet()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user