Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
Kalendar
Commits
38c20b70
Commit
38c20b70
authored
Sep 24, 2022
by
Claudio Cambra
Browse files
Fixed some broken props in mail components
Signed-off-by:
Claudio Cambra
<
claudio.cambra@gmail.com
>
parent
3755cae9
Pipeline
#236439
passed with stage
in 2 minutes and 1 second
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/mail/qml/FolderView.qml
View file @
38c20b70
...
...
@@ -13,7 +13,7 @@ import './private'
Kirigami.ScrollablePage
{
id
:
folderView
title
:
MailManager
.
selectedFolderName
readonly
property
int
mode
:
KalendarApplication
.
Mail
readonly
property
int
mode
:
Kalendar
.
KalendarApplication
.
Mail
Connections
{
target
:
Kalendar
.
Filter
...
...
src/mail/qml/mailboxselector/MailBoxList.qml
View file @
38c20b70
...
...
@@ -103,7 +103,7 @@ ListView {
}
}
property
bool
showSelected
:
(
controlRoot
.
pressed
===
true
||
(
controlRoot
.
highlighted
===
true
&&
applicationWindow
().
isW
ide
s
creen
))
property
bool
showSelected
:
(
controlRoot
.
pressed
===
true
||
(
controlRoot
.
highlighted
===
true
&&
applicationWindow
().
w
ide
S
creen
))
background
:
Rectangle
{
color
:
Qt
.
rgba
(
Kirigami
.
Theme
.
highlightColor
.
r
,
Kirigami
.
Theme
.
highlightColor
.
g
,
Kirigami
.
Theme
.
highlightColor
.
b
,
controlRoot
.
showSelected
?
0.5
:
hoverHandler
.
hovered
?
0.2
:
0
)
...
...
src/mail/qml/private/MailDelegate.qml
View file @
38c20b70
...
...
@@ -29,7 +29,7 @@ Kirigami.AbstractListItem {
signal
starMailRequested
()
signal
contextMenuRequested
()
property
bool
showSelected
:
(
mouseArea
.
pressed
===
true
||
(
root
.
highlighted
===
true
&&
applicationWindow
().
isW
ide
s
creen
))
property
bool
showSelected
:
(
mouseArea
.
pressed
===
true
||
(
root
.
highlighted
===
true
&&
applicationWindow
().
w
ide
S
creen
))
background
:
Rectangle
{
color
:
Qt
.
rgba
(
Kirigami
.
Theme
.
highlightColor
.
r
,
Kirigami
.
Theme
.
highlightColor
.
g
,
Kirigami
.
Theme
.
highlightColor
.
b
,
root
.
showSelected
?
0.5
:
hoverHandler
.
hovered
?
0.2
:
0
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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