Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
luyikei
VLMC
Commits
d147a888
Commit
d147a888
authored
Nov 04, 2016
by
Hugo Beauzée-Luyssen
Committed by
luyikei
Jul 21, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Effects: Reduce space waste
Signed-off-by:
Yikai Lu
<
luyikei.qmltu@gmail.com
>
parent
5742f487
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
24 deletions
+6
-24
src/Gui/effectsengine/Effect.qml
src/Gui/effectsengine/Effect.qml
+6
-23
src/Gui/effectsengine/EffectsListView.qml
src/Gui/effectsengine/EffectsListView.qml
+0
-1
No files found.
src/Gui/effectsengine/Effect.qml
View file @
d147a888
import
QtQuick
2.0
import
QtQuick
.
Controls
1.4
import
QtQuick
.
Layouts
1.3
Rectangle
{
id
:
effect
color
:
"
#444444
"
width
:
parent
.
width
height
:
200
border.color
:
"
#222222
"
border.width
:
1
width
:
parent
.
width
height
:
childrenRect
.
height
property
string
identifier
property
string
name
property
string
description
property
string
author
Column
{
width
:
sView
.
viewport
.
width
Text
{
text
:
name
font.pointSize
:
20
color
:
"
#EEEEEE
"
elide
:
Text
.
ElideRight
width
:
parent
.
width
}
Text
{
text
:
identifier
font.pointSize
:
14
color
:
"
#EEEEEE
"
elide
:
Text
.
ElideRight
width
:
parent
.
width
}
Text
{
text
:
description
color
:
"
#EEEEEE
"
elide
:
Text
.
ElideRight
width
:
parent
.
width
}
Text
{
text
:
author
color
:
"
#EEEEEE
"
elide
:
Text
.
ElideRight
width
:
parent
.
width
}
}
MouseArea
{
anchors.fill
:
parent
onPressed
:
{
...
...
src/Gui/effectsengine/EffectsListView.qml
View file @
d147a888
...
...
@@ -28,7 +28,6 @@ Rectangle {
identifier
:
model
.
identifier
name
:
model
.
name
description
:
model
.
description
author
:
model
.
author
}
}
}
...
...
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