fixed KKaper

This commit is contained in:
fourtf
2017-01-26 21:04:01 +01:00
parent 50df4966a8
commit a38b3c1626
3 changed files with 15 additions and 2 deletions
+2 -2
View File
@@ -84,7 +84,7 @@ NotebookPage::addToLayout(
auto vbox = new QVBoxLayout();
vbox->addWidget(widget);
this->hbox.addLayout(vbox);
this->hbox.addLayout(vbox, 1);
return;
}
@@ -93,7 +93,7 @@ NotebookPage::addToLayout(
auto vbox = new QVBoxLayout();
vbox->addWidget(widget);
this->hbox.insertLayout(position.first, vbox);
this->hbox.insertLayout(position.first, vbox, 1);
return;
}