aboutsummaryrefslogtreecommitdiff
path: root/x11-wm/kwinft/files/patch-render_post_night__color__manager.h
blob: 1bc88a70161541aeeddb7813ae99ad9183c38555 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Use "daylight" from "night_color_data.h" instead of <time.h>

In file included from base/options.cpp:15:
In file included from render/platform.h:10:
render/post/night_color_manager.h:478:28: error: use of undeclared identifier 'daylight'
        const bool isDay = daylight;
                           ^

--- render/post/night_color_manager.h.orig	2023-02-17 14:50:58 UTC
+++ render/post/night_color_manager.h
@@ -475,7 +475,7 @@ class night_color_manager (private)
         slow_update_timer = nullptr;
 
         const QDateTime now = QDateTime::currentDateTime();
-        const bool isDay = daylight;
+        const bool isDay = data.daylight;
         const int targetTemp = isDay ? data.temperature.day_target : data.temperature.night_target;
 
         // We've reached the target color temperature or the transition time is zero.