1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Force font size in groupchat header for all DPIs

Fixes #75
This commit is contained in:
Tux3 / Mlkj / !Lev.uXFMLA 2014-10-24 00:18:48 +02:00
parent 8dcf5ef6f3
commit 2ba994c73a
No known key found for this signature in database
GPG Key ID: 7E086DD661263264
2 changed files with 7 additions and 2 deletions

View File

@ -57,10 +57,12 @@ GroupChatForm::GroupChatForm(Group* chatGroup)
headTextLayout->addWidget(nusersLabel);
headTextLayout->addWidget(namesList);
headTextLayout->setMargin(0);
headTextLayout->setSpacing(0);
headTextLayout->addStretch();
nameLabel->setMinimumHeight(12);
nusersLabel->setMinimumHeight(12);
namesList->setMinimumHeight(12);
connect(sendButton, SIGNAL(clicked()), this, SLOT(onSendTriggered()));
connect(msgEdit, SIGNAL(enterPressed()), this, SLOT(onSendTriggered()));
connect(msgEdit, &ChatTextEdit::tabPressed, tabber, &TabCompleter::complete);

View File

@ -1,14 +1,17 @@
#nameLabel {
color: @black;
font: @mediumBold;
font-size:12px;
}
#statusLabel {
color: @mediumGrey;
font: @medium;
font-size:12px;
}
#peersLabel {
color: @mediumGrey;
font: @medium;
font-size:12px;
}