Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
linphone-desktop
Merge requests
!1059
Fix binding loop and null error
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Julien Wadel
requested to merge
fix/bindingloops
into
master
5 months ago
Overview
0
Commits
1
Pipelines
3
Changes
2
0
0
Compare
master
version 1
649554bd
5 months ago
master (base)
and
latest version
latest version
89656d42
1 commit,
5 months ago
version 1
649554bd
1 commit,
5 months ago
2 files
+
4
−
4
Expand all files
Preferences
Preferences
File browser
List view
Tree view
Compare changes
Inline
Side-by-side
Show whitespace changes
Show one file at a time
Search (e.g. *.vue) (Ctrl+P)
Linphone/view/Control/Popup/NumericPadPopup.qml
+
1
−
1
Options
View file @ 89656d42
Edit in single-file editor
Open in Web IDE
Show full file
@@ -68,7 +68,7 @@ Control.Popup {
}
contentItem
:
NumericPad
{
id
:
numPad
currentCall
:
currentCall
currentCall
:
mainItem
.
currentCall
anchors.fill
:
parent
anchors.topMargin
:
41
*
DefaultStyle
.
dp
anchors.bottomMargin
:
18
*
DefaultStyle
.
dp
Linphone/view/Page/Main/Contact/ContactPage.qml
+
3
−
3
Options
View file @ 89656d42
Edit in single-file editor
Open in Web IDE
Show full file
@@ -398,7 +398,7 @@ AbstractMainPage {
background
:
Item
{}
onClicked
:
mainItem
.
editContact
(
mainItem
.
selectedContact
)
icon.source
:
AppIcons
.
pencil
visible
:
!
mainItem
.
selectedContact
.
core
.
readOnly
visible
:
!
mainItem
.
selectedContact
?
.
core
.
readOnly
}
detailContent
:
ColumnLayout
{
Layout.fillWidth
:
false
@@ -695,7 +695,7 @@ AbstractMainPage {
iconSource
:
AppIcons
.
pencil
text
:
qsTr
(
"
Edit
"
)
onClicked
:
mainItem
.
editContact
(
mainItem
.
selectedContact
)
visible
:
!
mainItem
.
selectedContact
.
core
.
readOnly
visible
:
!
mainItem
.
selectedContact
?
.
core
.
readOnly
}
Rectangle
{
Layout.fillWidth
:
true
@@ -790,7 +790,7 @@ AbstractMainPage {
iconSource
:
AppIcons
.
trashCan
color
:
DefaultStyle
.
danger_500main
text
:
qsTr
(
"
Delete this contact
"
)
visible
:
!
mainItem
.
selectedContact
.
core
.
readOnly
visible
:
!
mainItem
.
selectedContact
?
.
core
.
readOnly
onClicked
:
{
mainItem
.
deleteContact
(
contact
)
}
Menu
Explore
Projects
Groups
Topics
Snippets