Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
glacier-home
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
NemoMobile
glacier-home
Commits
f75a6d46
Commit
f75a6d46
authored
Dec 07, 2016
by
Chupligin Sergey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[AppLauncher] fix folder view
parent
50656a80
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
2 deletions
+18
-2
LauncherItemDelegate.qml
src/qml/LauncherItemDelegate.qml
+18
-2
No files found.
src/qml/LauncherItemDelegate.qml
View file @
f75a6d46
...
...
@@ -70,6 +70,7 @@ Item {
anchors.fill
:
parent
opacity
:
0.75
color
:
"
white
"
z
:
-
1
}
delegate
:
MouseArea
{
...
...
@@ -77,7 +78,21 @@ Item {
height
:
gridview
.
cellHeight
Image
{
id
:
iconimage
source
:
source
source
:
model
.
object
.
iconId
anchors
{
horizontalCenter
:
parent
.
horizontalCenter
top
:
parent
.
top
topMargin
:
8
}
width
:
gridview
.
cellWidth
-
gridview
.
cellWidth
/
10
height
:
width
asynchronous
:
true
Spinner
{
id
:
spinner
anchors.centerIn
:
parent
enabled
:
(
model
.
object
.
type
===
LauncherModel
.
Application
)
?
model
.
object
.
isLaunching
:
false
}
}
Text
{
...
...
@@ -87,13 +102,14 @@ Item {
elide
:
Text
.
ElideRight
horizontalAlignment
:
Text
.
AlignHCenter
font.pixelSize
:
gridview
.
cellWidth
/
10
color
:
'
white
'
color
:
'
black
'
anchors
{
left
:
parent
.
left
right
:
parent
.
right
top
:
iconimage
.
bottom
topMargin
:
5
}
text
:
model
.
object
.
title
}
onClicked
:
{
model
.
object
.
launchApplication
()
...
...
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