Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Kaidan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
46
Issues
46
List
Boards
Labels
Service Desk
Milestones
Merge Requests
17
Merge Requests
17
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Network
Kaidan
Commits
a0059808
Commit
a0059808
authored
May 23, 2017
by
Linus Jahn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AboutPage: Fix close multiple times
parent
73e23f83
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
src/qml/AboutPage.qml
src/qml/AboutPage.qml
+6
-2
No files found.
src/qml/AboutPage.qml
View file @
a0059808
...
...
@@ -63,9 +63,13 @@ Kirigami.Page {
}
Controls.Button
{
anchors.horizontalCenter
:
parent
.
horizontalCenter
id
:
closeButton
text
:
qsTr
(
"
Close
"
)
onClicked
:
pageStack
.
pop
()
anchors.horizontalCenter
:
parent
.
horizontalCenter
onClicked
:
{
closeButton
.
enabled
=
false
;
pageStack
.
pop
();
}
}
}
}
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