diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-08-19 16:25:34 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-08-19 16:25:34 +0200 |
commit | 08d469c9ea5a5bdf186a4aa11f003affac1962e4 (patch) | |
tree | 52ec76e484c8c747e6b8d6cabaa4bb5c80536d68 /src/utilities/config.vala | |
parent | 601eaec7bdaf999574df69c41e41a1383921580b (diff) | |
parent | 10af7615316fd91eef61cc66a8ede38a2bff3fdc (diff) |
Merge tag 'upstream/0.6.5'
Upstream version 0.6.5
Diffstat (limited to 'src/utilities/config.vala')
-rw-r--r-- | src/utilities/config.vala | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/utilities/config.vala b/src/utilities/config.vala index dd31885..538602d 100644 --- a/src/utilities/config.vala +++ b/src/utilities/config.vala @@ -58,6 +58,7 @@ public class Config : GLib.Object { public int max_visible_slices { get; set; default = 24; } public bool show_indicator { get; set; default = true; } public bool show_captions { get; set; default = true; } + public bool search_by_string { get; set; default = true; } public bool auto_start { get; set; default = false; } public int showed_news { get; set; default = 0; } public Gee.ArrayList<Theme?> themes { get; private set; } @@ -77,6 +78,7 @@ public class Config : GLib.Object { writer.write_attribute("max_visible_slices", max_visible_slices.to_string()); writer.write_attribute("show_indicator", show_indicator ? "true" : "false"); writer.write_attribute("show_captions", show_captions ? "true" : "false"); + writer.write_attribute("search_by_string", search_by_string ? "true" : "false"); writer.write_attribute("showed_news", showed_news.to_string()); writer.end_element(); writer.end_document(); @@ -131,6 +133,9 @@ public class Config : GLib.Object { case "show_captions": show_captions = bool.parse(attr_content); break; + case "search_by_string": + search_by_string = bool.parse(attr_content); + break; case "showed_news": showed_news = int.parse(attr_content); break; |