* ready to release new version 1.0.3
[lichviet] / qml / LichViet / FullMonth.qml
index 80e98b4..4c31568 100644 (file)
@@ -15,7 +15,7 @@ You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>
 */
 
-import QtQuick 1.0
+import QtQuick 1.1
 
 import "Themes.js" as Themes
 import "main.js" as Script
@@ -103,7 +103,7 @@ Item{
                 horizontalAlignment: Text.AlignLeft
 
                 text: model ? model.day : ""
-                color: model ? model.inmonth ? (model.current ? "red" : model.inholiday ? theme_manager.theme.markdate.holidays : "black") : "grey" : "red"
+                color: model ? model.inmonth ? (model.current ? "grey" : model.inholiday ? theme_manager.theme.markdate.holidays : "black") : "grey" : "red"
                 font.pointSize: parent.width > parent.height ? parent.width ? parent.width / 6 : 1 : parent.width / 4
                 font.bold: true
             }
@@ -117,7 +117,7 @@ Item{
                 horizontalAlignment: Text.AlignBottom
 
                 text: model ? model.lunar_day : ""
-                color: model ? model.inmonth ? (model.current ? "red" : "#700070") : "grey" : "red"
+                color: model ? model.inmonth ? (model.current ? "white" : "#700070") : "grey" : "red"
                 font.pointSize: parent.width > parent.height ? parent.width ? parent.width / 8 : 1 : parent.width / 5
             }