[qet] [3178] Qetapp now read style.css in user configDir |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/qet Archives
]
Revision: 3178
Author: scorpio810
Date: 2014-06-24 17:09:09 +0200 (Tue, 24 Jun 2014)
Log Message:
-----------
Qetapp now read style.css in user configDir
Modified Paths:
--------------
trunk/sources/qetapp.cpp
Modified: trunk/sources/qetapp.cpp
===================================================================
--- trunk/sources/qetapp.cpp 2014-06-24 12:30:21 UTC (rev 3177)
+++ trunk/sources/qetapp.cpp 2014-06-24 15:09:09 UTC (rev 3178)
@@ -954,7 +954,7 @@
"}"
);
} else {
- QFile file("./style.css");
+ QFile file(configDir() + "style.css");
file.open(QFile::ReadOnly);
QString styleSheet = QLatin1String(file.readAll());
setStyleSheet(styleSheet);