aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorCrystalwarrior <varsash@gmail.com>2019-09-29 03:26:16 +0300
committerCrystalwarrior <varsash@gmail.com>2019-09-29 03:26:16 +0300
commit30c02221d282cb4d340aa38334f89e4825fa39d0 (patch)
treee353b34c99ca307cc97c7b2cf97cc2fa736d35e7 /src/main.cpp
parentb0f11e53dff7187a147f01da2d8da5bf392cd38d (diff)
Make the client select a default font that resembles classic AA font the most (cleartype off, MS Sans)
Create a better method to replace trailing whitespace with proper HTML representation Don't bother rendering the string character-by-character to prevent any latency happening with instant text speed
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 04b9df55..8d3f53b1 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -22,11 +22,11 @@ int main(int argc, char *argv[])
QSettings *configini = main_app.configini;
- QPluginLoader apngPlugin("imageformats/qapng");
+ QPluginLoader apngPlugin("qapng");
if (!apngPlugin.load())
qCritical() << "QApng plugin could not be loaded";
- QPluginLoader webpPlugin("imageformats/qwebp");
+ QPluginLoader webpPlugin("qwebp");
if (!webpPlugin.load())
qCritical() << "QWebp plugin could not be loaded";