mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Merge pull request #1026 from 23rd/patch-23-empty-message-retina
Fixed display of text message in empty tabs for Retina screen.
This commit is contained in:
commit
f1569a4cd7
|
@ -3,6 +3,7 @@
|
|||
#include "Application.hpp"
|
||||
#include "common/Common.hpp"
|
||||
#include "debug/AssertInGuiThread.hpp"
|
||||
#include "singletons/Fonts.hpp"
|
||||
#include "singletons/Theme.hpp"
|
||||
#include "singletons/WindowManager.hpp"
|
||||
#include "util/Helpers.hpp"
|
||||
|
@ -527,6 +528,10 @@ void SplitContainer::paintEvent(QPaintEvent *)
|
|||
|
||||
painter.setPen(this->theme->splits.header.text);
|
||||
|
||||
const auto font =
|
||||
getApp()->fonts->getFont(FontStyle::ChatMedium, this->scale());
|
||||
painter.setFont(font);
|
||||
|
||||
QString text = "Click to add a split";
|
||||
|
||||
Notebook *notebook = dynamic_cast<Notebook *>(this->parentWidget());
|
||||
|
|
Loading…
Reference in a new issue