Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Network
KDE Connect
Commits
cefe6eec
Commit
cefe6eec
authored
Jul 17, 2020
by
Nicolas Fella
Browse files
Add text to pair confirmation page
parent
a27d684f
Pipeline
#27455
passed with stage
in 5 minutes and 29 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
app/qml/DevicePage.qml
View file @
cefe6eec
...
...
@@ -134,19 +134,29 @@ Kirigami.ScrollablePage
}
}
RowLayout
{
Column
{
visible
:
root
.
currentDevice
.
hasPairingRequests
anchors.centerIn
:
parent
Button
{
text
:
i18nd
(
"
kdeconnect-app
"
,
"
Accept
"
)
icon.name
:
"
dialog-ok
"
onClicked
:
root
.
currentDevice
.
acceptPairing
()
spacing
:
Kirigami
.
Units
.
largeSpacing
Kirigami.PlaceholderMessage
{
text
:
i18n
(
"
Pair requested
"
)
anchors.horizontalCenter
:
parent
.
horizontalCenter
}
Button
{
text
:
i18nd
(
"
kdeconnect-app
"
,
"
Reject
"
)
icon.name
:
"
dialog-cancel
"
onClicked
:
root
.
currentDevice
.
rejectPairing
()
RowLayout
{
Button
{
text
:
i18nd
(
"
kdeconnect-app
"
,
"
Accept
"
)
icon.name
:
"
dialog-ok
"
onClicked
:
root
.
currentDevice
.
acceptPairing
()
}
Button
{
text
:
i18nd
(
"
kdeconnect-app
"
,
"
Reject
"
)
icon.name
:
"
dialog-cancel
"
onClicked
:
root
.
currentDevice
.
rejectPairing
()
}
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment