mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 19:13:24 +00:00
QML UI, cleanup: remove usesless Item
Trivial cleanup. A QML Item is intendend for visual items, so embedding a timer in it is plain useless. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
This commit is contained in:
parent
f040912395
commit
684e3eec6b
1 changed files with 5 additions and 7 deletions
|
@ -226,13 +226,11 @@ Kirigami.ScrollablePage {
|
|||
}
|
||||
}
|
||||
}
|
||||
Item {
|
||||
Timer {
|
||||
id: timer
|
||||
interval: 4000
|
||||
onTriggered: {
|
||||
deleteButtonVisible = false
|
||||
}
|
||||
Timer {
|
||||
id: timer
|
||||
interval: 4000
|
||||
onTriggered: {
|
||||
deleteButtonVisible = false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue