mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-01-06 18:14:23 -08:00
server version bump, minor chat view fix
This commit is contained in:
@@ -10,7 +10,7 @@ ChatView::ChatView(const QString &_ownName, QWidget *parent)
|
||||
setTextInteractionFlags(Qt::TextSelectableByMouse);
|
||||
}
|
||||
|
||||
void ChatView::appendMessage(const QString &sender, const QString &message)
|
||||
void ChatView::appendMessage(QString sender, const QString &message)
|
||||
{
|
||||
QTextCursor cursor(document()->lastBlock());
|
||||
cursor.movePosition(QTextCursor::End);
|
||||
@@ -31,7 +31,9 @@ void ChatView::appendMessage(const QString &sender, const QString &message)
|
||||
} else
|
||||
senderFormat.setForeground(Qt::blue);
|
||||
cursor.setCharFormat(senderFormat);
|
||||
cursor.insertText(sender + " ");
|
||||
if (!sender.isEmpty())
|
||||
sender.append(" ");
|
||||
cursor.insertText(sender);
|
||||
|
||||
QTextCharFormat messageFormat;
|
||||
if (sender.isEmpty())
|
||||
@@ -39,6 +41,5 @@ void ChatView::appendMessage(const QString &sender, const QString &message)
|
||||
cursor.setCharFormat(messageFormat);
|
||||
cursor.insertText(message);
|
||||
|
||||
|
||||
verticalScrollBar()->setValue(verticalScrollBar()->maximum());
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@ private:
|
||||
QString ownName;
|
||||
public:
|
||||
ChatView(const QString &_ownName, QWidget *parent = 0);
|
||||
void appendMessage(const QString &sender, const QString &message);
|
||||
void appendMessage(QString sender, const QString &message);
|
||||
};
|
||||
|
||||
#endif
|
||||
@@ -235,4 +235,4 @@ void Servatrice::statusUpdate()
|
||||
execSqlQuery(query);
|
||||
}
|
||||
|
||||
const QString Servatrice::versionString = "Servatrice 0.20110127";
|
||||
const QString Servatrice::versionString = "Servatrice 0.20110215";
|
||||
|
||||
Reference in New Issue
Block a user