diff options
| author | 2022-08-27 04:04:00 +0200 | |
|---|---|---|
| committer | 2022-08-27 04:04:00 +0200 | |
| commit | 63b236d8532ef77742875f433b94242b8f955f31 (patch) | |
| tree | 18902b4a41609dc73985cba58a6e636845bd9af2 | |
| parent | dedicated_room: Correctly handle token decoding (diff) | |
| download | yuzu-63b236d8532ef77742875f433b94242b8f955f31.tar.gz yuzu-63b236d8532ef77742875f433b94242b8f955f31.tar.xz yuzu-63b236d8532ef77742875f433b94242b8f955f31.zip | |
yuzu/chat_room: Make font size bigger
| -rw-r--r-- | src/yuzu/multiplayer/chat_room.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/multiplayer/chat_room.cpp b/src/yuzu/multiplayer/chat_room.cpp index 21582b3d6..bddceb795 100644 --- a/src/yuzu/multiplayer/chat_room.cpp +++ b/src/yuzu/multiplayer/chat_room.cpp | |||
| @@ -178,6 +178,10 @@ ChatRoom::ChatRoom(QWidget* parent) : QWidget(parent), ui(std::make_unique<Ui::C | |||
| 178 | 178 | ||
| 179 | ui->chat_history->document()->setMaximumBlockCount(max_chat_lines); | 179 | ui->chat_history->document()->setMaximumBlockCount(max_chat_lines); |
| 180 | 180 | ||
| 181 | auto font = ui->chat_history->font(); | ||
| 182 | font.setPointSizeF(10); | ||
| 183 | ui->chat_history->setFont(font); | ||
| 184 | |||
| 181 | // register the network structs to use in slots and signals | 185 | // register the network structs to use in slots and signals |
| 182 | qRegisterMetaType<Network::ChatEntry>(); | 186 | qRegisterMetaType<Network::ChatEntry>(); |
| 183 | qRegisterMetaType<Network::StatusMessageEntry>(); | 187 | qRegisterMetaType<Network::StatusMessageEntry>(); |