Add frame around the application view.
This commit is contained in:
18
qml/main.qml
18
qml/main.qml
@@ -22,8 +22,22 @@ ApplicationWindow {
|
||||
menuBar: ClideMenuBar {
|
||||
}
|
||||
|
||||
ClideApplicationView {
|
||||
projectDir: appWindow.appContextPath
|
||||
Rectangle {
|
||||
color: RustColors.menubar
|
||||
width: appView.implicitWidth
|
||||
height: appView.implicitHeight
|
||||
|
||||
ClideApplicationView {
|
||||
id: appView
|
||||
projectDir: appWindow.appContextPath
|
||||
implicitHeight: appWindow.height
|
||||
implicitWidth: appWindow.width
|
||||
|
||||
anchors.right: parent.right
|
||||
anchors.bottom: parent.bottom
|
||||
anchors.leftMargin: 20
|
||||
anchors.topMargin: 10
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user