Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Leander Schulten
Lichtsteuerung
Commits
5f6bde99
Commit
5f6bde99
authored
Sep 27, 2019
by
Leander Schulten
Browse files
ColorDialog: Remove debug code (console.log)
parent
590c9e08
Pipeline
#188032
passed with stage
in 4 minutes and 18 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/qml/components/ColorDialog.qml
View file @
5f6bde99
...
...
@@ -108,15 +108,6 @@ Window {
GradientStop
{
position
:
0
;
color
:
Qt
.
rgba
(
red
.
value
,
green
.
value
,
0
,
1
);}
GradientStop
{
position
:
1
;
color
:
Qt
.
rgba
(
red
.
value
,
green
.
value
,
1
,
1
);}
}
Component.onCompleted
:
{
console
.
log
(
"
color rgb
"
,
Qt
.
rgba
(
1
,
0
,
0
,
1
))
console
.
log
(
"
color hsl
"
,
Qt
.
hsla
(
1
,
0
,
0
,
1
))
let
c
=
Qt
.
hsla
(.
5
,
1
,.
5
,
1
);
console
.
log
(
"
Farbe:
"
)
for
(
let
i
in
c
){
console
.
log
(
i
,
"
:
"
,
c
[
i
]);
}
}
}
}
}
...
...
@@ -181,15 +172,6 @@ Window {
GradientStop
{
position
:
0
;
color
:
Qt
.
hsva
(
hue
.
value
,
saturation
.
value
,
0
,
1
);}
GradientStop
{
position
:
1
;
color
:
Qt
.
hsva
(
hue
.
value
,
saturation
.
value
,
1
,
1
);}
}
Component.onCompleted
:
{
console
.
log
(
"
color rgb
"
,
Qt
.
rgba
(
1
,
0
,
0
,
1
))
console
.
log
(
"
color hsl
"
,
Qt
.
hsla
(
1
,
0
,
0
,
1
))
let
c
=
Qt
.
hsla
(.
5
,
1
,.
5
,
1
);
console
.
log
(
"
Farbe:
"
)
for
(
let
i
in
c
){
console
.
log
(
i
,
"
:
"
,
c
[
i
]);
}
}
}
}
}
...
...
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