made column span redundant

This commit is contained in:
itsmattkc
2019-04-11 01:40:37 +10:00
parent d3bc1d4f06
commit e73011e192
7 changed files with 39 additions and 24 deletions
+3
View File
@@ -33,6 +33,9 @@ TextEditEx::TextEditEx(QWidget *parent, bool enable_rich_text) :
{
QVBoxLayout* layout = new QVBoxLayout(this);
layout->setSpacing(0);
layout->setMargin(0);
text_editor_ = new QTextEdit();
connect(text_editor_, SIGNAL(textChanged()), this, SLOT(queue_text_modified()));
layout->addWidget(text_editor_);