mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-02 06:04:39 -04:00
Massive UI revamping (v7): Fixed sizing of some device windows. Part of #1209
This commit is contained in:
@@ -51,10 +51,12 @@ TestMOSyncGui::TestMOSyncGui(DeviceUISet *deviceUISet, QWidget* parent) :
|
||||
m_lastEngineState(DeviceAPI::StNotStarted)
|
||||
{
|
||||
setAttribute(Qt::WA_DeleteOnClose, true);
|
||||
ui->setupUi(getContents());
|
||||
setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
|
||||
getContents()->setStyleSheet("#TestMOSyncGui { background-color: rgb(64, 64, 64); }");
|
||||
m_helpURL = "plugins/samplemimo/testmosync/readme.md";
|
||||
QWidget *contents = getContents();
|
||||
ui->setupUi(contents);
|
||||
setSizePolicy(contents->sizePolicy());
|
||||
|
||||
getContents()->setStyleSheet("#TestMOSyncGui { background-color: rgb(64, 64, 64); }");
|
||||
m_sampleMIMO = (TestMOSync*) m_deviceUISet->m_deviceAPI->getSampleMIMO();
|
||||
|
||||
ui->centerFrequency->setColorMapper(ColorMapper(ColorMapper::GrayGold));
|
||||
|
||||
Reference in New Issue
Block a user