mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-30 02:19:23 +00:00
feat(ui/views/App/Calls/ConferenceManager): in progress
This commit is contained in:
parent
040015a22b
commit
fddd8213c2
2 changed files with 22 additions and 5 deletions
|
|
@ -6,11 +6,28 @@ import Common.Styles 1.0
|
|||
// =============================================================================
|
||||
|
||||
Rectangle {
|
||||
border {
|
||||
color: TextFieldStyle.background.border.color.normal
|
||||
width: TextFieldStyle.background.border.width
|
||||
}
|
||||
id: field
|
||||
|
||||
default property alias _content: content.data
|
||||
|
||||
color: TextFieldStyle.background.color.normal
|
||||
radius: TextFieldStyle.background.radius
|
||||
|
||||
Item {
|
||||
id: content
|
||||
|
||||
anchors.fill: parent
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
|
||||
border {
|
||||
color: TextFieldStyle.background.border.color.normal
|
||||
width: TextFieldStyle.background.border.width
|
||||
}
|
||||
|
||||
color: 'transparent'
|
||||
radius: field.radius
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ Item {
|
|||
Shortcut {
|
||||
id: settingsShortcut
|
||||
|
||||
sequence: "Ctrl+P"
|
||||
sequence: 'Ctrl+P'
|
||||
|
||||
onActivated: App.smartShowWindow(App.getSettingsWindow())
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue