Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Multimedia
Kamoso
Commits
441d632d
Commit
441d632d
authored
Nov 25, 2020
by
Aleix Pol Gonzalez
🐧
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Properly QQC2.StackView.push
parent
aad2ea89
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
8 deletions
+4
-8
src/qml/ImagesView.qml
src/qml/ImagesView.qml
+4
-8
No files found.
src/qml/ImagesView.qml
View file @
441d632d
...
...
@@ -357,10 +357,7 @@ QQC2.StackView {
icon
:
"
document-share
"
label
:
enabled
?
i18np
(
"
Share %1 Item...
"
,
"
Share %1 Items...
"
,
view
.
selection
.
length
)
:
i18n
(
"
Share Item...
"
)
onClicked
:
stack
.
push
({
item
:
chooseShareComponent
,
properties
:
{
selection
:
view
.
selection
}
})
onClicked
:
stack
.
push
(
chooseShareComponent
,
{
selection
:
view
.
selection
})
}
Kirigami.BasicListItem
{
...
...
@@ -384,10 +381,9 @@ QQC2.StackView {
Kirigami.BasicListItem
{
icon
:
"
configure
"
label
:
i18n
(
"
Configure Kamoso...
"
)
onClicked
:
stack
.
push
({
item
:
configureComponent
,
properties
:
{
selection
:
view
.
selection
}
})
onClicked
:
{
stack
.
push
(
configureComponent
,
{
selection
:
view
.
selection
})
}
}
}
}
...
...
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