#LINQT-1350 : Remove external window corner

This commit is contained in:
Julien Wadel 2024-10-16 16:28:45 +02:00
parent 9454aa3781
commit 6f2e1af53a
3 changed files with 2 additions and 26 deletions

View file

@ -80,9 +80,8 @@ Control.TabBar {
}
Rectangle {
color: DefaultStyle.main1_500_main
x: parent.x + parent.width/2
y: parent.y + parent.height/2
width: parent.width/2
width: parent.width
height: parent.height/2
}
}

View file

@ -104,29 +104,6 @@ Item {
}
}
anchors.fill: parent
ColumnLayout{
anchors.fill: parent
spacing: 0
Rectangle{
Layout.fillWidth: true
Layout.fillHeight: true
color: DefaultStyle.grey_0
}
RowLayout{
Layout.fillWidth: true
Layout.preferredHeight: tabbar.cornerRadius
spacing: 0
Item{// Transparent corner
Layout.fillHeight: true
Layout.preferredWidth: tabbar.cornerRadius
}
Rectangle{
Layout.fillWidth: true
Layout.fillHeight: true
color: DefaultStyle.grey_0
}
}
}
RowLayout {
anchors.fill: parent

View file

@ -14,7 +14,7 @@ AbstractWindow {
// TODO : handle this bool when security mode is implemented
property bool firstConnection: true
color: "transparent"
color: DefaultStyle.grey_0
signal callCreated()