QML UI: try to remove two binding loops

Let's face it. I have no idea what I'm doing here.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-12-27 12:28:08 -08:00
parent 81999e4667
commit fcc615a497
2 changed files with 1 additions and 1 deletions

View file

@ -18,6 +18,7 @@ MobileComponents.Page {
id: dive
enabled: true
checked: diveListView.currentIndex == model.index
width: parent.width
property real detailsOpacity : 0
property int horizontalPadding: MobileComponents.Units.gridUnit / 2 - MobileComponents.Units.smallSpacing + 1

View file

@ -116,7 +116,6 @@ MobileComponents.ApplicationWindow {
text: checked ? "Disable verbose (for adb logcat)" : "Enable verbose (for adb logcat)"
onToggled: {
manager.verboseEnabled = checked;
checked = !checked;
}
}
}