X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Finputwidget.cpp;h=3148d6364ca5b772d594a3fec46189a034e877fb;hp=f05311a7737761e5f7a4a0c97d6a1fb7911ed214;hb=713382cb7e35561849dcdccef6d093fa9541bdb3;hpb=141ed9bef03a341c68acde5c41ac7b7f9e660c66 diff --git a/src/qtui/inputwidget.cpp b/src/qtui/inputwidget.cpp index f05311a7..3148d636 100644 --- a/src/qtui/inputwidget.cpp +++ b/src/qtui/inputwidget.cpp @@ -33,6 +33,8 @@ #include "tabcompleter.h" #include +const int leftMargin = 3; + InputWidget::InputWidget(QWidget *parent) : AbstractItemView(parent), _networkId(0) @@ -111,7 +113,7 @@ InputWidget::InputWidget(QWidget *parent) setShowStyleButtons(s.value("ShowStyleButtons", true)); s.notify("EnablePerChatHistory", this, SLOT(setEnablePerChatHistory(QVariant))); - setEnablePerChatHistory(s.value("EnablePerChatHistory", true)); + setEnablePerChatHistory(s.value("EnablePerChatHistory", false)); s.notify("MaxNumLines", this, SLOT(setMaxLines(QVariant))); setMaxLines(s.value("MaxNumLines", 5)); @@ -226,6 +228,11 @@ void InputWidget::currentChanged(const QModelIndex ¤t, const QModelIndex & inputLine()->setIdx(historyMap[currentBufferId].idx); inputLine()->setHtml(historyMap[currentBufferId].inputLine); inputLine()->moveCursor(QTextCursor::End,QTextCursor::MoveAnchor); + + // FIXME this really should be in MultiLineEdit (and the const int on top removed) + QTextBlockFormat format = inputLine()->textCursor().blockFormat(); + format.setLeftMargin(leftMargin); // we want a little space between the frame and the contents + inputLine()->textCursor().setBlockFormat(format); } NetworkId networkId = current.data(NetworkModel::NetworkIdRole).value();