Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Education
Artikulate
Commits
20c1ca65
Commit
20c1ca65
authored
Jul 06, 2020
by
Nicolas Fella
Committed by
Albert Astals Cid
Jul 20, 2020
Browse files
Make AboutPages HIG compliant
parent
bbef407c
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/qml/ArtikulateDrawer.qml
View file @
20c1ca65
...
...
@@ -134,11 +134,12 @@ Kirigami.GlobalDrawer {
}
ActionListItem
{
action
:
Kirigami.Action
{
text
:
i18n
(
"
About
"
)
text
:
i18n
(
"
About
Artikulate
"
)
iconName
:
"
help-about
"
onTriggered
:
{
root
.
pageStack
.
pop
();
root
.
pageStack
.
push
(
aboutPageComponent
);
if
(
root
.
pageStack
.
layers
.
depth
<
2
)
{
root
.
pageStack
.
layers
.
push
(
aboutPageComponent
)
}
}
}
}
...
...
src/qml/EditorDrawer.qml
View file @
20c1ca65
...
...
@@ -144,11 +144,12 @@ Kirigami.GlobalDrawer {
// }
ActionListItem
{
action
:
Kirigami.Action
{
text
:
i18n
(
"
About
"
)
text
:
i18n
(
"
About
Artikulate Editor
"
)
iconName
:
"
help-about
"
onTriggered
:
{
root
.
pageStack
.
pop
();
root
.
pageStack
.
push
(
aboutPageComponent
);
if
(
root
.
pageStack
.
layers
.
depth
<
2
)
{
root
.
pageStack
.
layers
.
push
(
aboutPageComponent
)
}
}
}
}
...
...
Write
Preview
Supports
Markdown
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