View Single Post
Guest | Posts: n/a | Thanked: 0 times | Joined on
#64
Originally Posted by Arie View Post
I got it working

in /usr/lib/drive-qml/models/MapSettingsModel.qml

There is a line:

/*
if (newvalue === "auto") {
setNightMode(isNight());
}
else*/ {
setNightMode(newvalue === "night");

Should be changed to:

if (newvalue === "auto") {
setNightMode(isNight());
}
else {
setNightMode(newvalue === "night");

It will start up in night mode, then choose automatic, it will set itself up and run as it should
Don't forget to outcomment the function isNight at the end of that file
 

The Following User Says Thank You to For This Useful Post: