qml UI fixes

This commit is contained in:
2017-05-15 17:05:22 +03:00
parent 6b8244f3c4
commit 1afc33abef
2 changed files with 87 additions and 84 deletions

View File

@ -16,7 +16,7 @@
***************************************************************************/
import QtQuick 2.0
import QtQuick.Controls 2.0 as QtControls
import QtQuick.Controls 1.3 as QtControls
Item {
@ -29,9 +29,6 @@ Item {
QtControls.TextArea {
id: textArea
anchors.fill: parent
background: Rectangle {
color: "white"
}
textFormat: TextEdit.PlainText
Column {
@ -76,7 +73,7 @@ Item {
function changeTooltipPosition() {
tooltip.x = textArea.cursorRectangle.x
tooltip.y = textArea.cursorRectangle.y
tooltip.y = textArea.cursorRectangle.y + textArea.cursorRectangle.height
}
function getLastTag() {