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

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;
}

View file

@ -21,4 +21,14 @@ Windows::repaintVisibleChatWidgets(Channel *channel)
Windows::mainWindow->repaintVisibleChatWidgets(channel);
}
}
void
Windows::save()
{
}
void
Windows::load()
{
}
}

View file

@ -25,6 +25,9 @@ public:
return *mainWindow;
}
static void load();
static void save();
private:
Windows()
{