diff options
Diffstat (limited to 'IrcChannelForm.ui.qml')
-rw-r--r-- | IrcChannelForm.ui.qml | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/IrcChannelForm.ui.qml b/IrcChannelForm.ui.qml index eba1072..053b04a 100644 --- a/IrcChannelForm.ui.qml +++ b/IrcChannelForm.ui.qml @@ -12,17 +12,31 @@ Item { anchors.top: parent.top } + TextField { + id: topic + objectName: "topic" + width: 472 + height: 25 + x: 8 + y: 8 + readOnly: true + font.family: "Source Code Pro" + font.pointSize: 9 + } + Flickable { id: flickable width: 472 - height: 411 + height: 390 x: 8 - y: 8 + y: 38 + flickableDirection: Flickable.AutoFlickIfNeeded TextArea.flickable: TextArea { objectName: "chat_area" id: textArea x: 8 - y: 8 + y: 38 + readOnly: true anchors.fill: parent wrapMode: TextArea.Wrap textFormat: TextEdit.RichText @@ -30,7 +44,7 @@ Item { font.pointSize: 9 selectByMouse: true } - ScrollBar.vertical: ScrollBar { } + ScrollBar.vertical: ScrollBar { position: 1.0 } } TextField { |