diff options
Diffstat (limited to 'app/main.qml')
-rw-r--r-- | app/main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/main.qml b/app/main.qml index 4c4d7a9..2f6bda3 100644 --- a/app/main.qml +++ b/app/main.qml @@ -33,7 +33,7 @@ ApplicationWindow { function findId(tid) { for(var i = 0; i < libraryModel.count; i++) { - if(tid == libraryModel.get(i).tid) { + if(tid === libraryModel.get(i).tid) { return i; } } |