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
Multimedia
Kdenlive
Commits
70761646
Commit
70761646
authored
Jan 04, 2022
by
Julius Künzel
Browse files
Qml required property is not supported in Qt < 5.15
parent
7ef5187f
Pipeline
#118694
passed with stage
in 8 minutes and 44 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/qml/ZoomBar.qml
View file @
70761646
...
...
@@ -13,9 +13,10 @@ Rectangle {
SystemPalette
{
id
:
barPalette
;
colorGroup
:
SystemPalette
.
Disabled
}
property
bool
hoveredBar
:
barArea
.
containsMouse
||
barArea
.
pressed
||
zoomStart
.
isActive
||
zoomEnd
.
isActive
property
int
barMinWidth
:
1
required
property
real
contentPos
required
property
real
zoomFactor
required
property
bool
fitsZoom
// TODO re-enable required keyword once we have Qt >=5.15 only
/*required*/
property
real
contentPos
/*required*/
property
real
zoomFactor
/*required*/
property
bool
fitsZoom
property
string
toolTipText
signal
proposeContentPos
(
real
proposedValue
)
signal
proposeZoomFactor
(
real
proposedValue
)
...
...
Julius Künzel
@jlskuz
mentioned in issue
#1266 (closed)
·
Jan 04, 2022
mentioned in issue
#1266 (closed)
mentioned in issue #1266
Toggle commit list
Write
Preview
Markdown
is supported
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