From dde805931dbb2d04ad0ec8124da2b1cc5d2a0bd2 Mon Sep 17 00:00:00 2001 From: Alexander Ljungberg Date: Wed, 10 Aug 2016 13:12:27 +0100 Subject: [PATCH] New: show successfully loaded NSClasses in nib2cib verbose. It's helpful to see which ones are loaded when troubleshooting nib2cib. --- Tools/nib2cib/Nib2Cib.j | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Tools/nib2cib/Nib2Cib.j b/Tools/nib2cib/Nib2Cib.j index 868a02557..aba6080d2 100644 --- a/Tools/nib2cib/Nib2Cib.j +++ b/Tools/nib2cib/Nib2Cib.j @@ -230,6 +230,8 @@ var FILE = require("file"), CPLog.info("Aux themes : " + themeList.slice(1).join(", ")); CPLog.info("Config file : " + (configInfo.path || "")); CPLog.info("System Font : " + [CPFont systemFontSize] + "px " + [CPFont systemFontFace]); + CPLog.info("NSClasses : " + userNSClasses); + CPLog.info("-------------------------------------------------------------\n"); var converter = [[Converter alloc] initWithInputPath:inputPath outputPath:outputPath];