Skip to content

Commit

Permalink
Print system font log only when verbose is enabled.
Browse files Browse the repository at this point in the history
  • Loading branch information
Swordfish90 committed Jan 19, 2019
1 parent b8b2644 commit cdd1488
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/qml/Fonts.qml
Expand Up @@ -236,7 +236,9 @@ QtObject{
function addSystemFonts() {
var families = monospaceSystemFonts;
for (var i = 0; i < families.length; i++) {
console.log("Adding system font: ", families[i])
if (verbose) {
console.log("Adding system font: ", families[i])
}
fontlist.append(convertToListElement(families[i]))
}
}
Expand Down

0 comments on commit cdd1488

Please sign in to comment.