See this page for instructions on how to use Flyspray: http://psi-im.org/wiki/Flyspray
Please Note!
Please do not create tasks here without discussing your bug or feature request on the forums or groupchat psi@conference.psi-im.org, *and* getting explicit confirmation by a developer to add it to flyspray.
Please Note!
Please do not create tasks here without discussing your bug or feature request on the forums or groupchat psi@conference.psi-im.org, *and* getting explicit confirmation by a developer to add it to flyspray.
FS#558 - Use | as a newline in topics
Attached to Project:
Psi Jabber Client
Opened by Kevin Smith (kev) - Saturday, 29 April 2006, 05:39 GMT-5
Last edited by Kevin Smith (kev) - Tuesday, 22 January 2008, 15:43 GMT-5
Opened by Kevin Smith (kev) - Saturday, 29 April 2006, 05:39 GMT-5
Last edited by Kevin Smith (kev) - Tuesday, 22 January 2008, 15:43 GMT-5
|
DetailsIn topics both on IRC and MUC, people tend to use | to seperatenewlines. It'd be good if we showed this (add a newline to the tooltip or whatever for every |).
|
This is the svn diff:
Index: src/groupchatdlg.cpp
===================================================================
--- src/groupchatdlg.cpp (revision 1069)
+++ src/groupchatdlg.cpp (working copy)
@@ -1135,7 +1135,7 @@
if(!m.subject().isEmpty()) {
ui_.le_topic->setText(m.subject());
ui_.le_topic->setCursorPosition(0);
- ui_.le_topic->setToolTip(QString("<qt><p>%1</p></qt>").arg(m.subject()));
+ ui_.le_topic->setToolTip(QString("<qt><p>%1</p></qt>").arg(m.subject().replace('|',"<br>")));
if(m.body().isEmpty()) {
if (!from.isEmpty())
m.setBody(QString("/me ") + tr("has set the topic to: %1").arg(m.subject()));