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
1493630d
Commit
1493630d
authored
Jan 16, 2022
by
Claudio Cambra
Browse files
Fix detection of isCurrentMonth in multidayview delegate
parent
c1b47a4a
Pipeline
#124299
passed with stage
in 4 minutes and 41 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/contents/ui/MultiDayViewIncidenceDelegate.qml
View file @
1493630d
...
...
@@ -45,10 +45,10 @@ Item {
property
int
horizontalSpacing
:
0
// In between incidence spaces
property
real
radius
:
Kirigami
.
Units
.
smallSpacing
property
string
openOccurrenceId
:
""
property
bool
isOpenOccurrence
:
openOccurrenceId
?
property
bool
isOpenOccurrence
:
openOccurrenceId
.
length
>
0
?
openOccurrenceId
===
modelData
.
incidenceId
:
false
property
bool
reactToCurrentMonth
:
true
readonly
property
bool
isInCurrentMonth
:
reactToCurrentMonth
&&
currentMonth
?
readonly
property
bool
isInCurrentMonth
:
reactToCurrentMonth
?
modelData
.
endTime
.
getMonth
()
==
root
.
month
||
modelData
.
startTime
.
getMonth
()
==
root
.
month
:
true
property
bool
isDark
:
false
...
...
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