diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-27 03:30:58 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-27 03:30:58 +0300 |
commit | 003043714367009efaf07015cc63a901ae2ee47c (patch) | |
tree | f441091a46ac07419977a0dba4cfd6b5ceab667b /src/text.cpp | |
parent | 916a3d76da98d078a807044c43d1a70bc146ba70 (diff) | |
download | plus-003043714367009efaf07015cc63a901ae2ee47c.tar.gz plus-003043714367009efaf07015cc63a901ae2ee47c.tar.bz2 plus-003043714367009efaf07015cc63a901ae2ee47c.tar.xz plus-003043714367009efaf07015cc63a901ae2ee47c.zip |
Remove default parameters from theme.
Diffstat (limited to 'src/text.cpp')
-rw-r--r-- | src/text.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/text.cpp b/src/text.cpp index 671139a05..fc343fb96 100644 --- a/src/text.cpp +++ b/src/text.cpp @@ -68,7 +68,11 @@ Text::Text(const std::string &text, textManager = new TextManager; if (theme != nullptr) { - theme->loadRect(mBubble, "bubble.xml", ""); + theme->loadRect(mBubble, + "bubble.xml", + "", + 0, + 8); } else { |