Show preview immediately on fetch
authorunc0rr
Sun, 12 Feb 2012 22:18:49 +0400
changeset 6680 907999eff9e9
parent 6679 d8b98aa486a6
child 6681 f46b1a1de2ce
Show preview immediately on fetch
QTfrontend/ui/page/pageadmin.cpp
--- a/QTfrontend/ui/page/pageadmin.cpp	Sun Feb 12 18:50:22 2012 +0100
+++ b/QTfrontend/ui/page/pageadmin.cpp	Sun Feb 12 22:18:49 2012 +0400
@@ -79,8 +79,8 @@
 void PageAdmin::connectSignals()
 {
     connect(pbAsk, SIGNAL(clicked()), this, SIGNAL(askServerVars()));
-    connect(leServerMessageNew, SIGNAL(textEdited(const QString &)), tb, SLOT(setHtml(const QString &)));
-    connect(leServerMessageOld, SIGNAL(textEdited(const QString &)), tb, SLOT(setHtml(const QString &)));
+    connect(leServerMessageNew, SIGNAL(textChanged(QString)), tb, SLOT(setHtml(const QString &)));
+    connect(leServerMessageOld, SIGNAL(textChanged(QString)), tb, SLOT(setHtml(const QString &)));
     connect(pbClearAccountsCache, SIGNAL(clicked()), this, SIGNAL(clearAccountsCache()));
     connect(pbSetSM, SIGNAL(clicked()), this, SLOT(smChanged()));
 }