fixed spelling of "separate"

This commit is contained in:
fourtf 2018-06-24 18:32:00 +02:00
parent 59ee091722
commit 63c213a36a
5 changed files with 5 additions and 5 deletions

View file

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

View file

@ -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 {

View file

@ -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(); });

View file

@ -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",

View file

@ -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",