fix PathBar TextEdit style
This commit is contained in:
parent
8635ca91fc
commit
29c18e5cf6
2 changed files with 5 additions and 1 deletions
|
@ -2,7 +2,7 @@ import QtQuick 2.12
|
||||||
import Qt.labs.settings 1.0
|
import Qt.labs.settings 1.0
|
||||||
|
|
||||||
Settings {
|
Settings {
|
||||||
property int viewMethod: 1
|
property int viewMethod: 1 // controls display mode: list or grid
|
||||||
property bool showHidden: false
|
property bool showHidden: false
|
||||||
property int width: 900
|
property int width: 900
|
||||||
property int height: 580
|
property int height: 580
|
||||||
|
|
|
@ -81,6 +81,10 @@ Item {
|
||||||
|
|
||||||
text: control.url
|
text: control.url
|
||||||
|
|
||||||
|
background: Rectangle {
|
||||||
|
radius: Meui.Theme.smallRadius
|
||||||
|
}
|
||||||
|
|
||||||
onAccepted: {
|
onAccepted: {
|
||||||
control.editorAccepted(text)
|
control.editorAccepted(text)
|
||||||
closeEditor()
|
closeEditor()
|
||||||
|
|
Loading…
Reference in a new issue