diff options
author | Henrik Brautaset Aronsen <subsurface@henrik.synth.no> | 2016-02-09 21:16:29 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-02-09 12:31:41 -0800 |
commit | 37438e28d2f903d60e079bceb8d0ef4d20f45860 (patch) | |
tree | d63f10e38d171377389f4486340df6dd28cccee5 /qt-mobile | |
parent | 98dfc5c770a27081a9fc1d065281aaa31b67d52a (diff) | |
download | subsurface-37438e28d2f903d60e079bceb8d0ef4d20f45860.tar.gz |
QML UI: Remove unused onClicked event for back button
I don't know how this got here. Probably having fun
with copy and paste.
Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile')
-rw-r--r-- | qt-mobile/qml/TopBar.qml | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/qt-mobile/qml/TopBar.qml b/qt-mobile/qml/TopBar.qml index 7c6beb44b..107b261d3 100644 --- a/qt-mobile/qml/TopBar.qml +++ b/qt-mobile/qml/TopBar.qml @@ -104,13 +104,6 @@ Rectangle { height: parent.height width: parent.width onClicked: { - detailsWindow.open() - } - } - MouseArea { - height: parent.height - width: parent.width - onClicked: { detailsWindow.startEditMode() } } |