Psi Jabber Client

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.
Tasklist

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
Task Type Feature Request
Category Account Setup
Status New
Assigned To No-one
Operating System All
Severity Low
Priority Polish
Reported Version 0.10
Due in Version Undecided
Due Date Undecided
Percent Complete 0%
Votes 0
Private No

Details

In 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 task depends upon

View Dependency Graph

This task blocks these from closing
FS#764 - Patch review (META TASK)
Comment by Dmitriy Erlih (KkKKk) - Saturday, 01 March 2008, 10:13 GMT-5
i have added this for groupchat. I don't know, where else i can find topic tooltip

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()));

Loading...