mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
fixed KKaper
This commit is contained in:
parent
50df4966a8
commit
a38b3c1626
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
10
windows.cpp
10
windows.cpp
|
@ -21,4 +21,14 @@ Windows::repaintVisibleChatWidgets(Channel *channel)
|
|||
Windows::mainWindow->repaintVisibleChatWidgets(channel);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
Windows::save()
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
Windows::load()
|
||||
{
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue