mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
fixed settings background color
This commit is contained in:
parent
381177dd24
commit
0682214ba7
|
@ -103,6 +103,8 @@ void removeRunningFile(const QString &path)
|
||||||
|
|
||||||
void runGui(QApplication &a, Paths &paths, Settings &settings)
|
void runGui(QApplication &a, Paths &paths, Settings &settings)
|
||||||
{
|
{
|
||||||
|
initQt();
|
||||||
|
|
||||||
chatterino::NetworkManager::init();
|
chatterino::NetworkManager::init();
|
||||||
chatterino::Updates::getInstance().checkForUpdates();
|
chatterino::Updates::getInstance().checkForUpdates();
|
||||||
|
|
||||||
|
|
|
@ -149,7 +149,7 @@ void LogsPopup::getOverrustleLogs()
|
||||||
req.setCaller(QThread::currentThread());
|
req.setCaller(QThread::currentThread());
|
||||||
req.onError([this, channelName](int errorCode) {
|
req.onError([this, channelName](int errorCode) {
|
||||||
this->close();
|
this->close();
|
||||||
QMessageBox *box = new QMessageBox(
|
auto box = new QMessageBox(
|
||||||
QMessageBox::Information, "Error getting logs",
|
QMessageBox::Information, "Error getting logs",
|
||||||
"No logs could be found for channel " + channelName);
|
"No logs could be found for channel " + channelName);
|
||||||
box->setAttribute(Qt::WA_DeleteOnClose);
|
box->setAttribute(Qt::WA_DeleteOnClose);
|
||||||
|
|
Loading…
Reference in a new issue