mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
fixed spelling of "separate"
This commit is contained in:
parent
59ee091722
commit
63c213a36a
|
@ -167,7 +167,7 @@ void MessageLayout::paint(QPainter &painter, int width, int y, int messageIndex,
|
||||||
}
|
}
|
||||||
|
|
||||||
// draw message seperation line
|
// draw message seperation line
|
||||||
if (app->settings->seperateMessages.getValue()) {
|
if (app->settings->separateMessages.getValue()) {
|
||||||
painter.fillRect(0, y, this->container_.getWidth(), 1,
|
painter.fillRect(0, y, this->container_.getWidth(), 1,
|
||||||
app->themes->splits.messageSeperator);
|
app->themes->splits.messageSeperator);
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,7 +53,7 @@ void AbstractIrcServer::connect()
|
||||||
{
|
{
|
||||||
this->disconnect();
|
this->disconnect();
|
||||||
|
|
||||||
// if (this->hasSeperateWriteConnection()) {
|
// if (this->hasSeparateWriteConnection()) {
|
||||||
this->initializeConnection(this->writeConnection_.get(), false, true);
|
this->initializeConnection(this->writeConnection_.get(), false, true);
|
||||||
this->initializeConnection(this->readConnection_.get(), true, false);
|
this->initializeConnection(this->readConnection_.get(), true, false);
|
||||||
// } else {
|
// } else {
|
||||||
|
|
|
@ -47,7 +47,7 @@ void SettingManager::initialize()
|
||||||
this->timestampFormat.connect([](auto, auto) { getApp()->windows->forceLayoutChannelViews(); });
|
this->timestampFormat.connect([](auto, auto) { getApp()->windows->forceLayoutChannelViews(); });
|
||||||
this->alternateMessageBackground.connect(
|
this->alternateMessageBackground.connect(
|
||||||
[](auto, auto) { getApp()->windows->forceLayoutChannelViews(); });
|
[](auto, auto) { getApp()->windows->forceLayoutChannelViews(); });
|
||||||
this->seperateMessages.connect(
|
this->separateMessages.connect(
|
||||||
[](auto, auto) { getApp()->windows->forceLayoutChannelViews(); });
|
[](auto, auto) { getApp()->windows->forceLayoutChannelViews(); });
|
||||||
this->collpseMessagesMinLines.connect(
|
this->collpseMessagesMinLines.connect(
|
||||||
[](auto, auto) { getApp()->windows->forceLayoutChannelViews(); });
|
[](auto, auto) { getApp()->windows->forceLayoutChannelViews(); });
|
||||||
|
|
|
@ -39,7 +39,7 @@ public:
|
||||||
BoolSetting showLastMessageIndicator = {"/appearance/messages/showLastMessageIndicator", false};
|
BoolSetting showLastMessageIndicator = {"/appearance/messages/showLastMessageIndicator", false};
|
||||||
BoolSetting hideEmptyInput = {"/appearance/hideEmptyInputBox", false};
|
BoolSetting hideEmptyInput = {"/appearance/hideEmptyInputBox", false};
|
||||||
BoolSetting showMessageLength = {"/appearance/messages/showMessageLength", false};
|
BoolSetting showMessageLength = {"/appearance/messages/showMessageLength", false};
|
||||||
BoolSetting seperateMessages = {"/appearance/messages/separateMessages", false};
|
BoolSetting separateMessages = {"/appearance/messages/separateMessages", false};
|
||||||
// BoolSetting collapseLongMessages = {"/appearance/messages/collapseLongMessages", false};
|
// BoolSetting collapseLongMessages = {"/appearance/messages/collapseLongMessages", false};
|
||||||
IntSetting collpseMessagesMinLines = {"/appearance/messages/collapseMessagesMinLines", 0};
|
IntSetting collpseMessagesMinLines = {"/appearance/messages/collapseMessagesMinLines", 0};
|
||||||
BoolSetting alternateMessageBackground = {"/appearance/messages/alternateMessageBackground",
|
BoolSetting alternateMessageBackground = {"/appearance/messages/alternateMessageBackground",
|
||||||
|
|
|
@ -98,7 +98,7 @@ AppearancePage::AppearancePage()
|
||||||
hbox.emplace<QLabel>("lines");
|
hbox.emplace<QLabel>("lines");
|
||||||
}
|
}
|
||||||
|
|
||||||
messages.append(this->createCheckBox("Seperate messages", app->settings->seperateMessages));
|
messages.append(this->createCheckBox("Separate messages", app->settings->separateMessages));
|
||||||
messages.append(this->createCheckBox("Alternate message background color",
|
messages.append(this->createCheckBox("Alternate message background color",
|
||||||
app->settings->alternateMessageBackground));
|
app->settings->alternateMessageBackground));
|
||||||
messages.append(this->createCheckBox("Show message length while typing",
|
messages.append(this->createCheckBox("Show message length while typing",
|
||||||
|
|
Loading…
Reference in a new issue