mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
fixed unneccessssary connected message and stretching in the highlights
settings
This commit is contained in:
parent
1381214911
commit
f695a41c6c
2 changed files with 4 additions and 2 deletions
|
@ -68,8 +68,8 @@ void AbstractIrcServer::connect()
|
||||||
this->readConnection->open();
|
this->readConnection->open();
|
||||||
}
|
}
|
||||||
|
|
||||||
this->onConnected();
|
// this->onConnected();
|
||||||
// this->connected.invoke();
|
// possbile event: started to connect
|
||||||
}
|
}
|
||||||
|
|
||||||
void AbstractIrcServer::disconnect()
|
void AbstractIrcServer::disconnect()
|
||||||
|
|
|
@ -49,6 +49,8 @@ HighlightingPage::HighlightingPage()
|
||||||
|
|
||||||
view->setTitles({"Pattern", "Flash taskbar", "Play sound", "Regex"});
|
view->setTitles({"Pattern", "Flash taskbar", "Play sound", "Regex"});
|
||||||
view->getTableView()->horizontalHeader()->setSectionResizeMode(QHeaderView::Fixed);
|
view->getTableView()->horizontalHeader()->setSectionResizeMode(QHeaderView::Fixed);
|
||||||
|
view->getTableView()->horizontalHeader()->setSectionResizeMode(
|
||||||
|
0, QHeaderView::Stretch);
|
||||||
|
|
||||||
// fourtf: make class extrend BaseWidget and add this to dpiChanged
|
// fourtf: make class extrend BaseWidget and add this to dpiChanged
|
||||||
QTimer::singleShot(1, [view] {
|
QTimer::singleShot(1, [view] {
|
||||||
|
|
Loading…
Reference in a new issue