diff options
-rw-r--r-- | launcher/qml/IconItem.qml | 2 | ||||
-rw-r--r-- | launcher/src/main.cpp | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/launcher/qml/IconItem.qml b/launcher/qml/IconItem.qml index c15a3da..5adbe81 100644 --- a/launcher/qml/IconItem.qml +++ b/launcher/qml/IconItem.qml @@ -97,7 +97,7 @@ Item { states: [ State { name: 'active' - when: loc.currentId == model.id + when: loc.currentId === model.id PropertyChanges { target: container x: loc.mouseX - width/2 diff --git a/launcher/src/main.cpp b/launcher/src/main.cpp index e56ff5a..e550948 100644 --- a/launcher/src/main.cpp +++ b/launcher/src/main.cpp @@ -45,10 +45,6 @@ struct Cleanup { } }; -void noOutput(QtMsgType, const QMessageLogContext &, const QString &) -{ -} - } int main(int argc, char *argv[]) |