summarylogtreecommitdiffstats
path: root/compile_new_vala.patch
diff options
context:
space:
mode:
Diffstat (limited to 'compile_new_vala.patch')
-rw-r--r--compile_new_vala.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/compile_new_vala.patch b/compile_new_vala.patch
deleted file mode 100644
index 1000db4daf0e..000000000000
--- a/compile_new_vala.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- src/background.vala
-+++ src/background.vala
-@@ -443,8 +443,14 @@
-
- private string _current_background;
- public string? current_background {
-- get { return _current_background; }
--
-+ get {
-+ if (_current_background == null)
-+ {
-+ _current_background = fallback_color;
-+ }
-+
-+ return _current_background;
-+ }
- set {
- if (value == null || value == "")
- {
-@@ -456,8 +462,6 @@
-
- reload ();
- }
--
-- default = fallback_color;
- }
-
- public bool draw_grid { get; set; default = true; }
-