From 4371ff3d0f0f98d740f2429af3d21ae7a17c3248 Mon Sep 17 00:00:00 2001 From: Alex Yule Date: Sun, 31 Mar 2019 01:36:02 -0700 Subject: [PATCH] remove preference check --- qml/Screens/S4MK3/Views/TrackDeck.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/qml/Screens/S4MK3/Views/TrackDeck.qml b/qml/Screens/S4MK3/Views/TrackDeck.qml index 93b8288..386a7d6 100755 --- a/qml/Screens/S4MK3/Views/TrackDeck.qml +++ b/qml/Screens/S4MK3/Views/TrackDeck.qml @@ -92,8 +92,7 @@ Item { Text { id: keyText - text: deckInfo.hasKey ? (prefs.camelotKey ? utils.convertToCamelot(deckInfo.keyString) : deckInfo.keyString) : "No key" - font.pixelSize: 24 + text: deckInfo.hasKey ? utils.convertToCamelot(deckInfo.keyString) : "No key" font.pixelSize: 24 font.family: "Roboto" font.weight: Font.Normal color: colors.colorWhite