version 1.4.0_alpha

add LogView
patch MatrixEdit for old Qt
This commit is contained in:
2020-06-17 22:15:47 +03:00
parent 7741878f3e
commit e67c1925b1
14 changed files with 651 additions and 24 deletions

View File

@@ -6,6 +6,9 @@
MatrixEdit::MatrixEdit(QWidget * parent): QWidget(parent) {
ui = new Ui::MatrixEdit();
ui->setupUi(this);
#if QT_VERSION >= QT_VERSION_CHECK(5, 2, 0)
ui->table->setSizeAdjustPolicy(QAbstractScrollArea::AdjustToContents);
#endif
connect(ui->table, SIGNAL(cellChanged(int,int)), this, SIGNAL(changed()));
ro = false;
}