Skip to content

Commit ed8f447

Browse files
author
Mich
committed
File Storage GUI section enhancements
1 parent f5f2628 commit ed8f447

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

src/mainwindow.cpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2046,3 +2046,11 @@ void MainWindow::on_actionInfo_triggered()
20462046
// infoDialog.setModal(true);
20472047
infoDialog.show();
20482048
}
2049+
2050+
void MainWindow::on_comboBoxLoggingMode_currentIndexChanged(int index)
2051+
{
2052+
if (index == 0)
2053+
ui->checkBoxSimplifyLog->setEnabled(true);
2054+
else if (index == 1)
2055+
ui->checkBoxSimplifyLog->setEnabled(false);
2056+
}

src/mainwindow.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,8 @@ private slots:
133133
void showSelectedGraphExclusively();
134134
void updateDeviceList();
135135
void on_actionUser_guide_triggered();
136-
137136
void on_actionInfo_triggered();
138-
137+
void on_comboBoxLoggingMode_currentIndexChanged(int index);
139138
private:
140139
// QCompleter *completer;
141140
FileReader fileReader;

0 commit comments

Comments
 (0)