mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-24 07:55:46 +00:00
yuzu/chat_room: Make font size bigger
This commit is contained in:
parent
ae295a79dc
commit
21db2855c0
1 changed files with 4 additions and 0 deletions
|
@ -178,6 +178,10 @@ ChatRoom::ChatRoom(QWidget* parent) : QWidget(parent), ui(std::make_unique<Ui::C
|
|||
|
||||
ui->chat_history->document()->setMaximumBlockCount(max_chat_lines);
|
||||
|
||||
auto font = ui->chat_history->font();
|
||||
font.setPointSizeF(10);
|
||||
ui->chat_history->setFont(font);
|
||||
|
||||
// register the network structs to use in slots and signals
|
||||
qRegisterMetaType<Network::ChatEntry>();
|
||||
qRegisterMetaType<Network::StatusMessageEntry>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue