[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[vidalia-svn] r4073: Apply an application-global stylesheet on OS X that forces a (in vidalia/trunk: . src/vidalia)



Author: edmanm
Date: 2009-08-28 01:32:01 -0400 (Fri, 28 Aug 2009)
New Revision: 4073

Modified:
   vidalia/trunk/CHANGELOG
   vidalia/trunk/src/vidalia/Vidalia.cpp
Log:

Apply an application-global stylesheet on OS X that forces all tree
widgets in Vidalia to use the 12pt font recommended by Apple's human
interface guidelines.


Modified: vidalia/trunk/CHANGELOG
===================================================================
--- vidalia/trunk/CHANGELOG	2009-08-28 02:31:44 UTC (rev 4072)
+++ vidalia/trunk/CHANGELOG	2009-08-28 05:32:01 UTC (rev 4073)
@@ -1,3 +1,9 @@
+0.2.4   xx-xxx-2009
+  o Apply an application-global stylesheet on OS X that forces all tree
+    widgets in Vidalia to use the 12pt font recommended by Apple's human
+    interface guidelines.
+
+
 0.2.3   27-Aug-2009
   o Create the data directory before trying to copy over the default
     Vidalia configuration file from inside the application bundle on Mac 

Modified: vidalia/trunk/src/vidalia/Vidalia.cpp
===================================================================
--- vidalia/trunk/src/vidalia/Vidalia.cpp	2009-08-28 02:31:44 UTC (rev 4072)
+++ vidalia/trunk/src/vidalia/Vidalia.cpp	2009-08-28 05:32:01 UTC (rev 4073)
@@ -141,6 +141,9 @@
                                             + "/plugins/marble");
 #endif
 #endif
+#ifdef Q_WS_MAC
+  setStyleSheet("QTreeWidget { font-size: 12pt }");
+#endif
 }
 
 /** Destructor */