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
decb8f76
Commit
decb8f76
authored
Nov 17, 2018
by
Leander Schulten
Browse files
Fix Bug where invisible items are only white and still visible in list
parent
6ebd3924
Changes
1
Hide whitespace changes
Inline
Side-by-side
DimmerGroupControl.qml
View file @
decb8f76
...
...
@@ -213,8 +213,16 @@ ControlItem{
delegate
:
CheckDelegate
{
width
:
200
text
:
itemData
.
name
visible
:
itemData
.
name
.
startsWith
(
search
.
text
,
Qt
.
CaseInsensitive
)
visible
:
height
!==
0
height
:
itemData
.
name
.
startsWith
(
search
.
text
,
Qt
.
CaseInsensitive
)
*
implicitHeight
checked
:
use
clip
:
true
Behavior
on
height
{
NumberAnimation
{
duration
:
250
easing.type
:
"
OutQuad
"
}
}
onCheckedChanged
:
use
=
checked
...
...
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