Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions libraries/disp/viewers/formfiles/hpisettingsview.ui
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<item>
<widget class="QTabWidget" name="tabWidget">
<property name="currentIndex">
<number>0</number>
<number>1</number>
</property>
<widget class="QWidget" name="tab_loadDigitizers">
<attribute name="title">
Expand Down Expand Up @@ -327,7 +327,7 @@
</widget>
</item>
<item>
<widget class="QFrame" name="frame">
<widget class="QFrame" name="frame_samplesToFit">
<property name="minimumSize">
<size>
<width>61</width>
Expand Down
6 changes: 6 additions & 0 deletions libraries/disp/viewers/hpisettingsview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@ HpiSettingsView::HpiSettingsView(const QString& sSettingsPath,
m_sSettingsPath = sSettingsPath;
m_pUi->setupUi(this);

// Disable change of window size for now
bool bWindowsize = false;
m_pUi->frame_samplesToFit->setVisible(bWindowsize);
m_pUi->label_3->setVisible(bWindowsize);
m_pUi->m_spinBox_samplesToFit->setVisible(bWindowsize);

connect(m_pUi->m_pushButton_loadDigitizers, &QPushButton::released,
this, &HpiSettingsView::onLoadDigitizers);
connect(m_pUi->m_pushButton_doFreqOrder, &QPushButton::clicked,
Expand Down